Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for START (0.14 sec)

  1. pkg/kubelet/kubelet.go

    	if kl.makeIPTablesUtilChains {
    		kl.initNetworkUtil()
    	}
    
    	// Start component sync loops.
    	kl.statusManager.Start()
    
    	// Start syncing RuntimeClasses if enabled.
    	if kl.runtimeClassManager != nil {
    		kl.runtimeClassManager.Start(wait.NeverStop)
    	}
    
    	// Start the pod lifecycle event generator.
    	kl.pleg.Start()
    
    	// Start eventedPLEG only if EventedPLEG feature gate is enabled.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. cluster/gce/gci/configure-helper.sh

        log-wrap 'StartKubeApiserver' start-kube-apiserver
        if [[ "${RUN_KONNECTIVITY_PODS:-false}" == "true" ]]; then
          log-wrap 'StartKonnectivityServer' start-konnectivity-server
        fi
        log-wrap 'StartKubeControllerManager' start-kube-controller-manager
        if [[ "${CLOUD_PROVIDER_FLAG:-external}" == "external" ]]; then
          log-wrap 'StartCloudControllerManager' start-cloud-controller-manager
        fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        int output_rank = result_type.getRank();
        // The canonicalized offset should be the trailing of the output rank.
        for (int start = output_rank - original_offset_dims.size();
             start < output_rank; ++start) {
          transpose_params.canonicalized_offset_dims.push_back(start);
        }
    
        // For those dims NOT inside the original_offset_dims are considered "batch
        // dims".
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            gcFile.lastModified = daysAgo(2)
    
            and:
            // start as new process so journal is not restored from in-memory cache
            executer.withTasks("help").start().waitForFinish()
    
            then:
            outputDir1.assertDoesNotExist()
            outputDir2.assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    		throw("stopTheWorld: holding locks")
    	}
    
    	lock(&sched.lock)
    	start := nanotime() // exclude time waiting for sched.lock from start and total time metrics.
    	sched.stopwait = gomaxprocs
    	sched.gcwaiting.Store(true)
    	preemptall()
    	// stop current P
    	gp.m.p.ptr().status = _Pgcstop // Pgcstop is only diagnostic.
    	gp.m.p.ptr().gcStopTime = start
    	sched.stopwait--
    	// try to retake all P's in Psyscall status
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. cmd/admin-handlers.go

    			if p == k {
    				v.Stop()
    				delete(globalProfiler, k)
    			}
    		}
    	}
    
    	// Start profiling on remote servers.
    	var hostErrs []NotificationPeerErr
    	for _, profiler := range profiles {
    		hostErrs = append(hostErrs, globalNotificationSys.StartProfiling(profiler)...)
    
    		// Start profiling locally as well.
    		prof, err := startProfiler(profiler)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    }  // namespace
    
    void RangeOp::build(OpBuilder &builder, OperationState &result, Value start,
                        Value limit, Value delta) {
      assert(start.getType() == limit.getType());
      assert(start.getType() == delta.getType());
      DenseIntElementsAttr start_val;
      DenseIntElementsAttr limit_val;
      DenseIntElementsAttr delta_val;
      if (matchPattern(start, m_Constant(&start_val)) &&
          matchPattern(limit, m_Constant(&limit_val)) &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    		ldr.SetSymSect(etext, sect)
    		ctxt.Textp = append(ctxt.Textp, etext, 0)
    		copy(ctxt.Textp[1:], ctxt.Textp)
    		ctxt.Textp[0] = text
    	}
    
    	start := uint64(Rnd(*FlagTextAddr, int64(Funcalign)))
    	va := start
    	n := 1
    	sect.Vaddr = va
    
    	limit := thearch.TrampLimit
    	if limit == 0 {
    		limit = 1 << 63 // unlimited
    	}
    	if *FlagDebugTextSize != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/validation/validation_test.go

    Invalid value: ".io": name part must consist of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric character (e.g. 'MyName',  or 'my.name',  or '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]'), webhooks[1].matchConditions[0].name: Invalid value: "some name": name part must consist of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric character (e.g. 'MyName',  or 'my.name',  or '123-abc', regex used...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller_test.go

    			setStartTime: true,
    			jobName:      "job2",
    		},
    	}
    	for _, tc := range tests {
    		t.Run(tc.name, func(t *testing.T) {
    			job := newJobWithName(tc.jobName, 1, 1, 6, batch.NonIndexedCompletion)
    			job.Spec.ActiveDeadlineSeconds = ptr.To[int64](1)
    			if tc.setStartTime {
    				start := metav1.NewTime(fakeClock.Now())
    				job.Status.StartTime = &start
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top