Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 957 for ONCE (0.08 sec)

  1. tensorflow/compiler/jit/device_compiler.h

    // was used for their TF model.
    // Prints only once to avoid spamming LOG(INFO).
    inline void LogOnceXlaCompiledFirstCluster() {
      static absl::once_flag log_once;
      absl::call_once(log_once, [] {
        LOG(INFO) << "Compiled cluster using XLA!  This line is logged at most "
                     "once for the lifetime of the process.";
      });
    }
    
    template <typename ExecutableType>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/errors/errors_test.go

    	}
    	if cause, ok := StatusCause(err, "SomeCause"); !ok || cause != err.ErrStatus.Details.Causes[0] {
    		t.Errorf("expected cause, got %v: %#v", ok, cause)
    	}
    
    	wrapped := fmt.Errorf("once: %w", err)
    	if cause, ok := StatusCause(wrapped, "SomeCause"); !ok || cause != err.ErrStatus.Details.Causes[0] {
    		t.Errorf("expected cause when wrapped, got %v: %#v", ok, cause)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  3. src/crypto/internal/boring/goboringcrypto.h

    // but cmd/link's internal linking mode doesn't handle constructors.
    // Until it does, we've exported the symbol and can call it explicitly.
    // (If using external linking mode, it will therefore be called twice,
    // once explicitly and once as a constructor, but that's OK.)
    /*unchecked*/ void _goboringcrypto_BORINGSSL_bcm_power_on_self_test(void);
    
    // #include <openssl/crypto.h>
    int _goboringcrypto_FIPS_mode(void);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestReportTaskIntegrationTest.groovy

            htmlReport.testClass("org.gradle.testing.SubTest").assertTestCount(4, 1, 0).assertTestPassed("passing") // onlySub is passing once and failing once
                .assertStdout(allOf(containsString('org.gradle.testing.SubTest#passing sub\n'),
                    containsString('org.gradle.testing.SubTest#passing super\n'),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/SmokeTestGradleRunner.groovy

         * Does not fail the test if the warning does not appear in the output.
         *
         * WARNING: Only use for warnings that occurs intermittently. For example a deprecation warning for a function
         * that is only called once per Gradle daemon from a third party plugin.
         *
         * @param warning the text of the warning to match.
         */
        SmokeTestGradleRunner maybeExpectLegacyDeprecationWarning(String warning) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/cache.go

    	once     sync.Once
    	initRepo func(context.Context) (Repo, error)
    	r        Repo
    }
    
    func newCachingRepo(ctx context.Context, path string, initRepo func(context.Context) (Repo, error)) *cachingRepo {
    	return &cachingRepo{
    		path:     path,
    		initRepo: initRepo,
    	}
    }
    
    func (r *cachingRepo) repo(ctx context.Context) Repo {
    	r.once.Do(func() {
    		var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. pkg/apis/resource/types.go

    type ResourceClaim struct {
    	metav1.TypeMeta
    	// Standard object metadata
    	// +optional
    	metav1.ObjectMeta
    
    	// Spec describes the desired attributes of a resource that then needs
    	// to be allocated. It can only be set once when creating the
    	// ResourceClaim.
    	Spec ResourceClaimSpec
    
    	// Status describes whether the resource is available and with which
    	// attributes.
    	// +optional
    	Status ResourceClaimStatus
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode_test.go

    			want:          nil,
    			assertOnError: assertNilError,
    		},
    		{
    			name: "simple value 23",
    			in:   hex("f7"), // undefined
    			assertOnError: func(t *testing.T, e error) {
    				// TODO: Once this can pass, make the assertion stronger.
    				if e == nil {
    					t.Error("expected non-nil error")
    				}
    			},
    			fixme: "cbor simple value 23 (\"undefined\") should not be accepted",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  9. pkg/controller/deployment/deployment_controller.go

    	podLister corelisters.PodLister
    
    	// dListerSynced returns true if the Deployment store has been synced at least once.
    	// Added as a member to the struct to allow injection for testing.
    	dListerSynced cache.InformerSynced
    	// rsListerSynced returns true if the ReplicaSet store has been synced at least once.
    	// Added as a member to the struct to allow injection for testing.
    	rsListerSynced cache.InformerSynced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/apps/v1beta1/generated.proto

    // release notes for more information.
    // ControllerRevision implements an immutable snapshot of state data. Clients
    // are responsible for serializing and deserializing the objects that contain
    // their internal state.
    // Once a ControllerRevision has been successfully created, it can not be updated.
    // The API Server will fail validation of all requests that attempt to mutate
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top