Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 143 for halted (0.17 sec)

  1. src/cmd/go/internal/modload/buildlist.go

    				panic(fmt.Sprintf("newRequirements called with unsorted roots: %v", rootModules))
    			}
    		}
    
    		if v, ok := rs.maxRootVersion[m.Path]; ok && gover.ModCompare(m.Path, v, m.Version) >= 0 {
    			continue
    		}
    		rs.maxRootVersion[m.Path] = m.Version
    	}
    
    	if rs.maxRootVersion["go"] == "" {
    		panic(`newRequirements called without a "go" version`)
    	}
    	return rs
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. tensorflow/BUILD

        visibility = ["//visibility:public"],
    )
    
    # The interface library (tensorflow.dll.if.lib) for linking tensorflow DLL library (tensorflow.dll) on Windows.
    # To learn more about import library (called interface library in Bazel):
    #     https://docs.microsoft.com/en-us/cpp/build/linking-an-executable-to-a-dll?view=vs-2017#linking-implicitly
    filegroup(
        name = "get_tensorflow_dll_import_lib",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    This change is part of a larger ongoing effort to make the intended behavior of configurations more consistent and predictable, and to unlock further speed and memory improvements.
    
    Currently, the following methods should only be called with these listed allowed usages:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    [[sec:kotlin_dsl_about_conventions]]
    === About conventions
    
    Some of the Gradle core plugins expose configurability with the help of a so-called _convention_ object.
    These serve a similar purpose to — and have now been superseded by — _extensions_.
    Conventions are deprecated.
    Please avoid using convention objects when writing new plugins.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    	if !ctxt.Loaded {
    		panic("DynlinkingGo called before all symbols loaded")
    	}
    	return ctxt.BuildMode == BuildModeShared || ctxt.linkShared || ctxt.BuildMode == BuildModePlugin || ctxt.canUsePlugins
    }
    
    // CanUsePlugins reports whether a plugins can be used
    func (ctxt *Link) CanUsePlugins() bool {
    	if !ctxt.Loaded {
    		panic("CanUsePlugins called before all symbols loaded")
    	}
    	return ctxt.canUsePlugins
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. src/runtime/mbitmap.go

    //go:nosplit
    func (span *mspan) heapBits() []uintptr {
    	const doubleCheck = false
    
    	if doubleCheck && !span.isUserArenaChunk {
    		if span.spanclass.noscan() {
    			throw("heapBits called for noscan")
    		}
    		if span.elemsize > minSizeForMallocHeader {
    			throw("heapBits called for span class that should have a malloc header")
    		}
    	}
    	// Find the bitmap at the end of the span.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_server_test.go

    			} else {
    				clientConn.SetReadDeadline(time.Now().Add(1 * time.Minute))
    			}
    			n, err := io.ReadFull(clientConn, bb)
    			if err != nil {
    				t.Fatalf("%s #%d: %s\nRead %d, wanted %d, got %x, wanted %x\n", test.name, i+1, err, n, len(bb), bb[:n], b)
    			}
    			if !bytes.Equal(b, bb) {
    				t.Fatalf("%s #%d: mismatch on read: got:%x want:%x", test.name, i+1, bb, b)
    			}
    		}
    		clientConn.Close()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/load.go

    // the package at path as imported from the package in parentDir.
    // Lookup requires that one of the Load functions in this package has already
    // been called.
    func Lookup(parentPath string, parentIsStd bool, path string) (dir, realPath string, err error) {
    	if path == "" {
    		panic("Lookup called with empty package path")
    	}
    
    	if parentIsStd {
    		path = loaded.stdVendor(parentPath, path)
    	}
    	pkg, ok := loaded.pkgCache.Get(path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    					now.Add(3*time.Minute).Format(time.RFC3339)),
    			},
    			wantErr: "",
    		},
    		{
    			name:        "happy path, with previous state",
    			service:     &testKMSv2EnvelopeService{err: fmt.Errorf("broken")}, // not called
    			state:       validState(t, "2", now, false),
    			statusKeyID: "2",
    			wantState: envelopekmsv2.State{
    				EncryptedObject:     kmstypes.EncryptedObject{KeyID: "2"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  10. src/runtime/pprof/pprof_test.go

    					if have, want := p.SampleType[i].Unit, unit; have != want {
    						t.Logf("pN SampleType[%d]; %q != %q", i, have, want)
    						ok = false
    					}
    				}
    
    				// cpuHog1 called below is the primary source of CPU
    				// load, but there may be some background work by the
    				// runtime. Since the OS rusage measurement will
    				// include all work done by the process, also compare
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
Back to top