Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 346 for haxe (0.1 sec)

  1. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// TensorFlow but can be used by each filesystem plugin to represent internal
    /// data.
    ///
    /// We prefer to have these structures instead of passing `void*` into
    /// method signatures to have some type of type safety: for example, operations
    /// that are only valid on random access files have a `TF_RandomAccessFile`
    /// argument.
    ///
    /// Lifetime: The wrapper data structures are owned by core TensorFlow. The data
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  2. src/runtime/mgcmark.go

    }
    
    // gcMarkRootCheck checks that all roots have been scanned. It is
    // purely for debugging.
    func gcMarkRootCheck() {
    	if work.markrootNext < work.markrootJobs {
    		print(work.markrootNext, " of ", work.markrootJobs, " markroot jobs done\n")
    		throw("left over markroot jobs")
    	}
    
    	// Check that stacks have been scanned.
    	//
    	// We only check the first nStackRoots Gs that we should have scanned.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  3. src/sync/atomic/atomic_test.go

    		x.i = val
    		if !CompareAndSwapInt32(&x.i, val, val+1) {
    			t.Fatalf("should have swapped %#x %#x", val, val+1)
    		}
    		if x.i != val+1 {
    			t.Fatalf("wrong x.i after swap: x.i=%#x val+1=%#x", x.i, val+1)
    		}
    		x.i = val + 1
    		if CompareAndSwapInt32(&x.i, val, val+2) {
    			t.Fatalf("should not have swapped %#x %#x", val, val+2)
    		}
    		if x.i != val+1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  4. src/cmd/go/go_test.go

    	tg.grepStdoutNot(".", "list should not have matched anything")
    	tg.grepStderr("matched no packages", "list should have reported that pattern matched no packages")
    	tg.grepStderrNot("symlink", "list should not have reported symlink")
    
    	tg.run("list", "example/xx/...")
    	tg.grepStdoutNot(".", "list should not have matched anything")
    	tg.grepStderr("matched no packages", "list should have reported that pattern matched no packages")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  5. src/runtime/mheap.go

    	//
    	// TODO(austin): It would be nice if this was uint64 for
    	// faster scanning, but we don't have 64-bit atomic bit
    	// operations.
    	pageMarks [pagesPerArena / 8]uint8
    
    	// pageSpecials is a bitmap that indicates which spans have
    	// specials (finalizers or other). Like pageInUse, only the bit
    	// corresponding to the first page in each span is used.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    			// if one has a directive marker and the other doesn't,
    			// then we have a conflict, since one is deleting or replacing the whole map,
    			// and the other is doing things to individual keys.
    			if okLeft != okRight {
    				return true, nil
    			}
    			// if they both have markers, but they are not the same directive,
    			// then we have a conflict because they're doing different things to the map.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    }
    
    func (t *Tester) getObjectMetaOrFail(obj runtime.Object) metav1.Object {
    	objMeta, err := meta.Accessor(obj)
    	if err != nil {
    		t.Fatalf("object does not have ObjectMeta: %v\n%#v", err, obj)
    	}
    	return objMeta
    }
    
    func (t *Tester) setObjectMeta(obj runtime.Object, name string) {
    	meta := t.getObjectMetaOrFail(obj)
    	meta.SetName(name)
    	if t.clusterScope {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    +
    *Warning: a low value (other than 0) can severely hurt the performance of the tests*
    
    `ignoreFailures` — default: false::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1/types.go

    	// Total number of unavailable pods targeted by this deployment. This is the total number of
    	// pods that are still required for the deployment to have 100% available capacity. They may
    	// either be pods that are running but not yet available or pods that still have not been created.
    	// +optional
    	UnavailableReplicas int32 `json:"unavailableReplicas,omitempty" protobuf:"varint,5,opt,name=unavailableReplicas"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	default:
    		return fmt.Errorf("store for %s must have CreateStrategy or UpdateStrategy set", e.DefaultQualifiedResource.String())
    	}
    
    	if e.DeleteStrategy == nil {
    		return fmt.Errorf("store for %s must have DeleteStrategy set", e.DefaultQualifiedResource.String())
    	}
    
    	if options.RESTOptions == nil {
    		return fmt.Errorf("options for %s must have RESTOptions set", e.DefaultQualifiedResource.String())
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
Back to top