Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 111 for Forked (0.11 sec)

  1. pkg/controller/job/backoff_utils.go

    // 3. if the pod has been deleted, use the `deletionTimestamp - grace_period` to estimate the moment of deletion
    // 4. fallback to pod's creation time
    //
    // Pods owned by Kubelet are marked with Ready=False condition when
    // transitioning to terminal phase, thus being handled by (1.) or (2.).
    // Orphaned pods are deleted by PodGC, thus being handled by (3.).
    func getFinishedTime(p *v1.Pod) time.Time {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/liveness/plive.go

    //	OpVarDef x
    //	x = {base, len, cap}
    //
    // If instead the generated code looked like:
    //
    //	OpVarDef x
    //	base, len, cap = pieces of x[1:]
    //	x = {base, len, cap}
    //
    // then the liveness analysis would decide the previous value of x was
    // unnecessary even though it is about to be used by the x[1:] computation.
    // Similarly, if the generated code looked like:
    //
    //	base, len, cap = pieces of x[1:]
    //	x = {base, len, cap}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/batch/v1/types.go

    	// Specifies the action taken on a pod failure when the requirements are satisfied.
    	// Possible values are:
    	//
    	// - FailJob: indicates that the pod's job is marked as Failed and all
    	//   running pods are terminated.
    	// - FailIndex: indicates that the pod's index is marked as Failed and will
    	//   not be restarted.
    	//   This value is beta-level. It can be used when the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIntegrationTest.groovy

            when:
            configurationCacheRun "help"
            then:
            configurationCache.assertStateLoaded()
            outputContains("isConfigurationCacheRequested=true")
        }
    
        def "configuration cache is marked requested even if disabled due to --export-keys"() {
            def configurationCache = newConfigurationCacheFixture()
    
            buildFile """
                def startParameter = gradle.startParameter
                tasks.help {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

         * <p>
         * If your intention is to exclude a particular transitive dependency
         * because you don't like the version it pulls in to the configuration
         * then consider using forced versions' feature: {@link ResolutionStrategy#force(Object...)}.
         *
         * <pre class='autoTested'>
         * plugins {
         *     id 'java' // so that I can declare 'implementation' dependencies
         * }
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. cmd/erasure-server-pool-decom.go

    	if err != nil {
    		decomLogIf(ctx, fmt.Errorf("invalid workers value err: %v, defaulting to %d", err, len(pool.sets)))
    		workerSize = len(pool.sets)
    	}
    
    	// Each decom worker needs one List() goroutine/worker
    	// add that many extra workers.
    	workerSize += len(pool.sets)
    
    	wk, err := workers.New(workerSize)
    	if err != nil {
    		return err
    	}
    
    	var vc *versioning.Versioning
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 14:30:43 UTC 2024
    - 41.5K bytes
    - Viewed (1)
  7. api/maven-api-plugin/src/main/mdo/plugin.mdo

              <type>String</type>
              <description>
                Description with the reason of Mojo deprecation. Similar to Javadoc {@code @deprecated}
                This will trigger a warning when a user tries to use a Mojo marked as deprecated.
              </description>
            </field>
            <field>
              <name>configurator</name>
              <version>1.0.0+</version>
              <type>String</type>
              <description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMalformedXML: {
    		Code:           "MalformedXML",
    		Description:    "The XML you provided was not well-formed or did not validate against our published schema.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMissingContentLength: {
    		Code:           "MissingContentLength",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  9. docs/metrics/prometheus/list.md

    | `minio_cluster_health_erasure_set_status`         | Get current health status of the erasure set   |
    
    ## Cluster Replication Metrics
    
    Metrics marked as ``Site Replication Only`` only populate on deployments with [Site Replication](https://min.io/docs/minio/linux/operations/install-deploy-manage/multi-site-replication.html) configurations.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  10. pkg/kube/kclient/client_test.go

    			handled.Inc()
    		},
    	})
    	c.RunAndWait(test.NewStop(t))
    	retry.UntilOrFail(t, deployments.HasSynced, retry.Timeout(time.Second*2), retry.Delay(time.Millisecond))
    	// This checks sync worked properly. This MUST be immediately available, not eventually
    	assert.Equal(t, handled.Load(), 1)
    }
    
    func TestClient(t *testing.T) {
    	tracker := assert.NewTracker[string](t)
    	c := kube.NewFakeClient()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top