Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,879 for forSet (0.18 sec)

  1. src/math/big/prime_test.go

    			t.Errorf("%s(%v, base=2) = false, want true", name, i)
    		}
    		if len(want) > 0 && i == want[0] {
    			want = want[1:]
    		}
    	}
    	if len(want) > 0 {
    		t.Fatalf("forgot to test %v", want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 12:54:00 UTC 2019
    - 7.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/build.go

    // (for example, buildV) are in cmd/go/internal/cfg.
    
    var (
    	forcedAsmflags   []string // internally-forced flags for cmd/asm
    	forcedGcflags    []string // internally-forced flags for cmd/compile
    	forcedLdflags    []string // internally-forced flags for cmd/link
    	forcedGccgoflags []string // internally-forced flags for gccgo
    )
    
    var BuildToolchain toolchain = noToolchain{}
    var ldBuildmode string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher_test.go

    	var lock sync.RWMutex
    	var w *cacheWatcher
    	count := 0
    	filter := func(string, labels.Set, fields.Set) bool { return true }
    	forget := func(drainWatcher bool) {
    		lock.Lock()
    		defer lock.Unlock()
    		count++
    		// forget() has to stop the watcher, as only stopping the watcher
    		// triggers stopping the process() goroutine which we are in the
    		// end waiting for in this test.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/cgo_bad_directives.txt

    # Ignore _* files
    rm x.go
    ! go build .
    stderr 'no Go files'
    cp cgo_yy.go.txt _cgo_yy.go
    ! go build .
    stderr 'no Go files' #_* files are ignored...
    
    [compiler:gc] ! go build _cgo_yy.go # ... but if forced, the comment is rejected
    # Actually, today there is a separate issue that _ files named
    # on the command line are ignored. Once that is fixed,
    # we want to see the cgo_ldflag error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  5. src/internal/reflectlite/export_test.go

    	// Using an unexported field forces flagRO.
    	if !field.Name.IsExported() {
    		if field.Embedded() {
    			fl |= flagEmbedRO
    		} else {
    			fl |= flagStickyRO
    		}
    	}
    	// Either flagIndir is set and v.ptr points at struct,
    	// or flagIndir is not set and v.ptr is the actual struct data.
    	// In the former case, we want v.ptr + offset.
    	// In the latter case, we must have field.offset = 0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/rest/meta_test.go

    			expectErr:   false,
    			expectObjNS: "",
    		},
    		{
    			name:        "cluster-scoped req, namespaced obj",
    			reqNS:       "",
    			objNS:       "foo",
    			expectErr:   false,
    			expectObjNS: "", // no error, object is forced to cluster-scoped for backwards compatibility
    		},
    		{
    			name:        "namespaced req, no-namespace obj",
    			reqNS:       "foo",
    			objNS:       "",
    			expectErr:   false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 19 01:47:23 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

        version="1.1"
    }
    # or
    some-alias = {
         module="com.mycompany:some-lib",
         version="1.1"
    }
    ```
    
    [[unsupported_file_format]]
    == Unsupported catalog file format
    
    This error indicates that you tried to import a catalog file, but the format isn't recognized.
    Typically, this happens if you tried to import a catalog using `from(files("some-catalog.txt"))`.
    
    Currently Gradle only supports TOML version catalogs.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/critical.go

    				// critical edges for this argument
    				if d = blocks[argID]; d == nil {
    					// splitting doesn't necessarily remove the critical edge,
    					// since we're iterating over len(f.Blocks) above, this forces
    					// the new blocks to be re-examined.
    					d = f.NewBlock(BlockPlain)
    					d.Pos = p.Pos
    					blocks[argID] = d
    					if f.pass.debug > 0 {
    						f.Warnl(p.Pos, "split critical edge")
    					}
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 21:40:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. src/syscall/exec_plan9.go

    // goroutine may have been rescheduled).
    func startProcess(argv0 string, argv []string, attr *ProcAttr) (pid int, err error) {
    	type forkRet struct {
    		pid int
    		err error
    	}
    
    	forkc := make(chan forkRet, 1)
    	go func() {
    		runtime.LockOSThread()
    		var ret forkRet
    
    		ret.pid, ret.err = forkExec(argv0, argv, attr)
    		// If fork fails there is nothing to wait for.
    		if ret.err != nil || ret.pid == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

        return signalPassFailure();
    
      // If there is no runtime device information and data format is not explicitly
      // forced, there is nothing to do.
      if (devices.NumDevices() == 0 && force_data_format_.empty()) return;
    
      func.walk([&](LayoutSensitiveInterface layout_sensitive_interface) {
        // Get desired op data format.
        StringRef target_data_format = force_data_format_;
        if (target_data_format.empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top