Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,111 for ONCE (0.04 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/DocumentOverlay.kt

                val propertyName: String
            ) : MergeKey
    
            /**
             * The key for element blocks that configure the same nested objects (like configuring functions do).
             *
             * TODO: once we have identity-aware configuring functions, include the arguments in this key.
             */
            data class CanMergeBlock(
                val functionName: String,
                val configuredTypeName: FqName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. api/maven-api-metadata/src/main/mdo/metadata.mdo

              <defaultValue></defaultValue>
              <identifier>true</identifier>
            </field>
            <field>
              <name>extension</name>
              <version>1.1.0+</version>
              <type>String</type>
              <description>The file extension of the sub-artifact. Each classifier and extension pair may only appear once.</description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 15 17:32:27 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. pkg/kubelet/prober/worker.go

    // It is safe to call stop multiple times.
    func (w *worker) stop() {
    	select {
    	case w.stopCh <- struct{}{}:
    	default: // Non-blocking.
    	}
    }
    
    // doProbe probes the container once and records the result.
    // Returns whether the worker should continue.
    func (w *worker) doProbe(ctx context.Context) (keepGoing bool) {
    	defer func() { recover() }() // Actually eat panics (HandleCrash takes care of logging)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 01:28:06 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  4. cmd/http-stats.go

    	if w == nil { // when response recorder nil, this is an active request
    		hstats.currentS3Requests.Inc(api)
    		bh.httpStats[bucket] = hstats
    		return
    	} // else {
    	hstats.currentS3Requests.Dec(api) // decrement this once we have the response recorder.
    
    	hstats.totalS3Requests.Inc(api)
    	code := w.StatusCode
    
    	switch {
    	case code == 0:
    	case code == 499:
    		// 499 is a good error, shall be counted as canceled.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 06:25:13 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. guava/src/com/google/common/collect/Queues.java

            // multiple elements already available (e.g. LinkedBlockingQueue#drainTo locks only once)
            added += q.drainTo(buffer, numElements - added);
            if (added < numElements) { // not enough elements immediately available; will have to poll
              E e; // written exactly once, by a successful (uninterrupted) invocation of #poll
              while (true) {
                try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/config/common_test.go

    				t.Errorf("expected error: %v, got %v, error: %v", test.expectedError, (err != nil), err)
    			}
    		})
    	}
    }
    
    // NOTE: do not delete this test once an older API is removed and there is only one API left.
    // Update the inline "gv" and "gvExperimental" variables, to have the GroupVersion String of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_device.cc

      return absl::OkStatus();
    }
    
    // Warn about XLA_CPU/XLA_GPU exactly once.
    static void ShowXlaDeviceDeprecationWarning(
        absl::string_view compilation_device_name) {
      static absl::once_flag once;
      if (absl::StrContains(compilation_device_name, "CPU") ||
          absl::StrContains(compilation_device_name, "GPU")) {
        absl::call_once(once, [] {
          LOG(INFO) << "XLA_GPU and XLA_CPU devices are deprecated and will be "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
Back to top