Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 957 for ONCE (0.2 sec)

  1. security/pkg/nodeagent/cache/secretcache_test.go

    	_, err = sc.GenerateSecret(security.WorkloadKeyCertResourceName)
    	if err != nil {
    		t.Errorf("failed to generate certificate for trustAnchor test case")
    	}
    	// Ensure Root cert call back gets invoked once, then workload cert once it expires in 200ms
    	u.Expect(map[string]int{security.RootCertReqResourceName: 1, security.WorkloadKeyCertResourceName: 1})
    	u.Reset()
    
    	rootCert, err := os.ReadFile(filepath.Join("./testdata", "root-cert.pem"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    	// HasAddedPods returns whether the populator has looped through the list
    	// of active pods and added them to the desired state of the world cache,
    	// at a time after sources are all ready, at least once. It does not
    	// return true before sources are all ready because before then, there is
    	// a chance many or all pods are missing from the list of active pods and
    	// so few to none will have been added.
    	HasAddedPods() bool
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

    You can also configure sources for each binary build for those cases where sources are compiled only on certain target machines.
    
    .Sources and Swift compilation
    image::swift-sourcesets-compilation.png[]
    
    // TODO once we have the testing chapter
    //Test sources are configured on each test suite script block. See <<swift_testing.adoc#swift_testing,Testing Swift projects>> chapter.
    
    [[sec:swift_dependency_management_overview]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/conversion.go

    	if err := autoConvert_core_PodTemplateSpec_To_v1_PodTemplateSpec(in, out, s); err != nil {
    		return err
    	}
    
    	// drop init container annotations so they don't take effect on legacy kubelets.
    	// remove this once the oldest supported kubelet no longer honors the annotations over the field.
    	out.Annotations = dropInitContainerAnnotations(out.Annotations)
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 22:30:55 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. misc/go_android_exec/main.go

    	// wait for sys.boot_completed.
    	if err := adb("wait-for-device", "exec-out", "while [[ -z $(getprop sys.boot_completed) ]]; do sleep 1; done;"); err != nil {
    		return 0, err
    	}
    
    	// Done once per make.bash.
    	if err := adbCopyGoroot(); err != nil {
    		return 0, err
    	}
    
    	// Prepare a temporary directory that will be cleaned up at the end.
    	// Binary names can conflict.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. internal/bucket/lifecycle/lifecycle.go

    				break
    			}
    
    			if !rule.Expiration.IsDaysNull() {
    				// Specifying the Days tag will automatically perform ExpiredObjectDeleteMarker cleanup
    				// once delete markers are old enough to satisfy the age criteria.
    				// https://docs.aws.amazon.com/AmazonS3/latest/userguide/lifecycle-configuration-examples.html
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top