Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 109 for Change (0.14 sec)

  1. tensorflow/c/c_api.cc

    // TODO(josh11b,mrry): Change Session to be able to use a Graph*
    // directly, instead of requiring us to serialize to a GraphDef and
    // call Session::Extend().
    bool ExtendSessionGraphHelper(TF_Session* session, TF_Status* status) {
      if (session->graph != nullptr) {
        // Take the graph lock before the session lock to avoid deadlock. This is
        // safe since session->graph does not change.
        session->graph->mu.lock();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

              },
              "resourceVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	nsec := int64(ft.HighDateTime)<<32 + int64(ft.LowDateTime)
    	// change starting time to the Epoch (00:00:00 UTC, January 1, 1970)
    	nsec -= 116444736000000000
    	// convert into nanoseconds
    	nsec *= 100
    	return nsec
    }
    
    func NsecToFiletime(nsec int64) (ft Filetime) {
    	// convert into 100-nanosecond
    	nsec /= 100
    	// change starting time to January 1, 1601
    	nsec += 116444736000000000
    	// split into high / low
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

              },
              "resourceVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  5. pkg/registry/batch/job/strategy_test.go

    				ObjectMeta: getValidObjectMeta(1),
    				Spec: batch.JobSpec{
    					Selector: validSelector,
    					Template: validPodTemplateSpec,
    				},
    			},
    		},
    		"attempt status update and verify it doesn't change": {
    			job: batch.Job{
    				ObjectMeta: getValidObjectMeta(0),
    				Spec: batch.JobSpec{
    					Selector: validSelector,
    					Template: validPodTemplateSpec,
    				},
    				Status: batch.JobStatus{
    					Active: 1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  6. pkg/api/pod/util_test.go

    					// old pod should never be changed
    					if !reflect.DeepEqual(oldPod, oldPodInfo.pod()) {
    						t.Errorf("old pod changed: %v", cmp.Diff(oldPod, oldPodInfo.pod()))
    					}
    
    					switch {
    					case enabled || oldPodHasInPlaceVerticalScaling:
    						// new pod shouldn't change if feature enabled or if old pod has ResizePolicy set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

        # change during a cluster upgrade.)
        local templates
        templates=$(get-template "${PROJECT}")
    
        # Deliberately allow globbing, do not change unless a bug is found
        # shellcheck disable=SC2206
        local all_instance_groups=(${INSTANCE_GROUPS[@]:-} ${WINDOWS_INSTANCE_GROUPS[@]:-})
        # Deliberately do not quote, do not change unless a bug is found
        # shellcheck disable=SC2068
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. src/crypto/sha512/sha512_test.go

    	},
    	{
    		"3b59c5e64b0da7bfc18d7017bf458d90f2c83601ff1afc6263ac0993",
    		"It's a tiny change to the code and not completely disgusting. - Bob Manchek",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    // the variable <NAME>, run 'go env <NAME>'. To change the default setting,
    // run 'go env -w <NAME>=<VALUE>'. Defaults changed using 'go env -w'
    // are recorded in a Go environment configuration file stored in the
    // per-user configuration directory, as reported by os.UserConfigDir.
    // The location of the configuration file can be changed by setting
    // the environment variable GOENV, and 'go env GOENV' prints the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal_test.go

    	assert.True(t, tc.statusUpdated, "the status should have been updated")
    	if tc.verifyEvents {
    		assert.Equal(t, tc.specReplicas != tc.expectedDesiredReplicas, tc.eventCreated, "an event should have been created only if we expected a change in replicas")
    	}
    
    	tc.verifyRecordedMetric(t, m)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
Back to top