Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 224 for run1 (0.11 sec)

  1. pkg/controller/job/job_controller.go

    	jm.updateStatusHandler = jm.updateJobStatus
    	jm.patchJobHandler = jm.patchJob
    	jm.syncHandler = jm.syncJob
    
    	metrics.Register()
    
    	return jm, nil
    }
    
    // Run the main goroutine responsible for watching and syncing jobs.
    func (jm *Controller) Run(ctx context.Context, workers int) {
    	defer utilruntime.HandleCrash()
    	logger := klog.FromContext(ctx)
    
    	// Start events processing pipeline.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  2. pkg/kubelet/pod_workers.go

    //
    //	. .   ^- Kubelet evicts pod       .
    //	. .                               .
    //
    // -------------------|       |---------------- = syncTerminatingPod runs then exits without error
    //
    //	        . .        ^ pod worker loop exits syncPod, sees pod is terminating,
    //					 . .          invokes syncTerminatingPod
    //	        . .                               .
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            _ * provider3.size() >> 2
            1 * provider3.calculateValue(_) >> ValueSupplier.Value.of([b, d])
            1 * action.execute(b)
            1 * action.execute(d)
            0 * _
        }
    
        def "runs configure element action immediately when element already realized"() {
            containerAllowsExternalProviders()
            def action = Mock(Action)
            def provider = Mock(ProviderInternal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		// infinities caused due to float64 overflow
    		{decQuantity(12, 500, DecimalSI), math.Inf(0)},
    		{decQuantity(-12, 500, DecimalSI), math.Inf(-1)},
    	}
    
    	for _, item := range table {
    		t.Run(fmt.Sprintf("%s %s", item.in.Format, item.in.String()), func(t *testing.T) {
    			out := item.in.AsApproximateFloat64()
    			if out != item.out {
    				t.Fatalf("expected %v, got %v", item.out, out)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

        override fun transform(outputs: TransformOutputs) {
            val inputFile = inputArtifact.get().asFile
            println("Transforming ${inputFile.name}...")
            outputs.file("${inputFile.nameWithoutExtension}-summary.txt").run {
                writeText("${inputFile.name}: ${inputFile.length()}")
            }
        }
    }
    
    val summarized = Attribute.of("summarized", Boolean::class.javaObjectType)
    dependencies {
        attributesSchema {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/options/options_test.go

    	// insertion order is random.
    	sort.Sort(sortedGCIgnoredResources(expected.GarbageCollectorController.GCIgnoredResources))
    
    	if !reflect.DeepEqual(expected, s) {
    		t.Errorf("Got different run options than expected.\nDifference detected on:\n%s", cmp.Diff(expected, s))
    	}
    }
    
    func TestApplyTo(t *testing.T) {
    	fs := pflag.NewFlagSet("addflagstest", pflag.ContinueOnError)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. go.sum

    github.com/opencontainers/image-spec v1.0.2/go.mod h1:BtxoFyWECRxE4U/7sNtV5W15zMzWCbyJoFRP3s7yZA0=
    github.com/opencontainers/runc v1.1.12 h1:BOIssBaW1La0/qbNZHXOOa71dZfZEQOzW7dqQf3phss=
    github.com/opencontainers/runc v1.1.12/go.mod h1:S+lQwSfncpBha7XTy/5lBwWgm5+y5Ma/O44Ekby9FK8=
    github.com/opencontainers/runtime-spec v1.0.2/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                }
                callback.run();
                break;
            default:
                ComponentUtil.getCurlHelper().post("/_configsync/flush").execute(response -> {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Flushed config files: {} => {}", fesenType, response.getContentAsString());
                    }
                    callback.run();
                }, e -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  9. tests/migrate_test.go

    		{name: "uniqueIndex to multi uniqueIndex", from: &UniqueStruct5{}, to: &UniqueStruct7{}, checkFunc: checkMulIndex},
    	}
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			if err := DB.Migrator().DropTable(table); err != nil {
    				t.Fatalf("failed to drop table, got error: %v", err)
    			}
    			if err := DB.Table(table).AutoMigrate(test.from); err != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.h

    // * We do not provide TF_OK since it is not strictly necessary and we
    //   are not optimizing for convenience.
    // * We make assumption that one session has one graph.  This should be
    //   fine since we have the ability to run sub-graphs.
    // * We could allow NULL for some arguments (e.g., NULL options arg).
    //   However since convenience is not a primary goal, we don't do this.
    // * Devices are not in this API.  Instead, they are created/used internally
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
Back to top