Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 149 for resumption (0.24 sec)

  1. src/crypto/ecdsa/boring.go

    // BoringCrypto key and saves it in pubCache or privCache.
    //
    // We could just assume that once used in a Sign or Verify operation,
    // a particular key is never again modified, but that has not been a
    // stated assumption before. Just in case there is any existing code that
    // does modify the key between operations, we save the original values
    // alongside the cached BoringCrypto key and check that the real key
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 00:30:19 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/upload/findwork.go

    					// the counter data contained therein was all from after the asof
    					// date.
    					//
    					// TODO(rfindley): store the begin date in reports, so that we can
    					// verify this assumption.
    					u.logger.Printf("Uploadable: %s", fi.Name())
    					ans.readyfiles = append(ans.readyfiles, filepath.Join(localdir, fi.Name()))
    				}
    			} else {
    				// ...otherwise fall back on the old behavior of uploading all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/runtime/signal_darwin_amd64.go

    		// leaving no way to distinguish a breakpoint-induced SIGTRAP
    		// from an asynchronous signal SIGTRAP.
    		// They all look breakpoint-induced by default.
    		// Try looking at the code to see if it's a breakpoint.
    		// The assumption is that we're very unlikely to get an
    		// asynchronous SIGTRAP at just the moment that the
    		// PC started to point at unmapped memory.
    		pc := uintptr(c.rip())
    		// OS X will leave the pc just after the INT 3 instruction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 23:07:11 UTC 2022
    - 4K bytes
    - Viewed (0)
  4. cmd/warm-backend-minio.go

    	minPartSize               = 1024 * 1024 * 128 // chosen by us to be optimal for HDDs
    )
    
    // optimalPartInfo - calculate the optimal part info for a given
    // object size.
    //
    // NOTE: Assumption here is that for any object to be uploaded to any S3 compatible
    // object storage it will have the following parameters as constants.
    //
    //	maxPartsCount - 10000
    //	maxMultipartPutObjectSize - 5TiB
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 21 11:43:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. src/crypto/rsa/boring.go

    // BoringCrypto key and saves it in pubCache or privCache.
    //
    // We could just assume that once used in a sign/verify/encrypt/decrypt operation,
    // a particular key is never again modified, but that has not been a
    // stated assumption before. Just in case there is any existing code that
    // does modify the key between operations, we save the original values
    // alongside the cached BoringCrypto key and check that the real key
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 00:30:19 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/partially_decluster_pass.cc

    // where it will always be constant folded) host-side computation of f does not
    // regress performance in any significant manner.  We will have to revisit this
    // algorithm with a more complex cost model if this assumption turns out to be
    // incorrect.
    Status PartiallyDeclusterGraph(Graph* graph,
                                   const FunctionLibraryDefinition* flib_def,
                                   Env* env) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. src/html/template/transition.go

    	//
    	// We conservatively treat all strings as URLs, but make some
    	// allowances to avoid confusion.
    	//
    	// In (1), our conservative assumption is justified.
    	// In (2), valid font names do not contain ':', '?', or '#', so our
    	// conservative assumption is fine since we will never transition past
    	// urlPartPreQuery.
    	// In (3), our protocol heuristic should not be tripped, and there
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_flags.txt

    # the implicit '.'.
    ! go test --answer=42 ./x
    stderr '^no Go files in '$PWD'$'
    
    # However, *flags* that appear after unrecognized flags should still be
    # interpreted as flags, under the (possibly-erroneous) assumption that
    # unrecognized flags are non-boolean.
    
    go test -v -x ./x -timeout 24h -boolflag=true foo -timeout 25h
    stdout 'args: foo -timeout 25h'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 17:53:14 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/base/FinalizableReferenceQueueClassLoaderUnloadingTest.java

        // and friends, and that we will eventually expect to see garbage-collected. The assumption
        // is that the ClassLoader of this test is a URLClassLoader, and that it loads FRQ itself
        // rather than delegating to a parent ClassLoader. If this assumption is violated the test will
        // fail and will need to be rewritten.
    
        Class<?> frqC = FinalizableReferenceQueue.class;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/scalehandler.go

    	scaleGroupVersion   = schema.GroupVersion{Group: "autoscaling", Version: "v1"}
    	replicasPathInScale = fieldpath.MakePathOrDie("spec", "replicas")
    )
    
    // ResourcePathMappings maps a group/version to its replicas path. The
    // assumption is that all the paths correspond to leaf fields.
    type ResourcePathMappings map[string]fieldpath.Path
    
    // ScaleHandler manages the conversion of managed fields between a main
    // resource and the scale subresource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top