Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 3,356 for startm (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    			return err
    		}
    
    		// the regular expression should pin to the start and end of the host
    		// in the origin header, this will prevent CVE-2022-1996.
    		// possible ways it can pin to the start of host in the origin header:
    		//   - match the start of the origin with '^'
    		//   - match what separates the scheme and host with '//' or '://',
    		//     this pins to the start of host in the origin header.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/container_manager_linux.go

    		err := cm.draManager.Start(dra.ActivePodsFunc(activePods), sourcesReady)
    		if err != nil {
    			return fmt.Errorf("start dra manager error: %w", err)
    		}
    	}
    
    	// Initialize CPU manager
    	err := cm.cpuManager.Start(cpumanager.ActivePodsFunc(activePods), sourcesReady, podStatusProvider, runtimeService, containerMap)
    	if err != nil {
    		return fmt.Errorf("start cpu manager error: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. src/runtime/cgo/gcc_darwin_arm64.c

    #endif
    
    	crosscall1(ts.fn, setg_gcc, (void*)ts.g);
    	return nil;
    }
    
    #if TARGET_OS_IPHONE
    
    // init_working_dir sets the current working directory to the app root.
    // By default ios/arm64 processes start in "/".
    static void
    init_working_dir()
    {
    	CFBundleRef bundle = CFBundleGetMainBundle();
    	if (bundle == NULL) {
    		fprintf(stderr, "runtime/cgo: no main bundle\n");
    		return;
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 09 03:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    // Reconciler runs a periodic loop to reconcile the desired state of the world with
    // the actual state of the world by triggering attach detach operations.
    // Note: This is distinct from the Reconciler implemented by the kubelet volume
    // manager. This reconciles state for the attach/detach controller. That
    // reconciles state for the kubelet volume manager.
    type Reconciler interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. pilot/pkg/config/monitor/monitor.go

    				return err
    			}
    		}
    		return nil
    	})
    	return err
    }
    
    // Start starts a new Monitor. Immediately checks the Monitor getSnapshotFunc
    // and updates the controller. It then kicks off an asynchronous event loop that
    // periodically polls the getSnapshotFunc for changes until a close event is sent.
    func (m *Monitor) Start(stop <-chan struct{}) {
    	m.checkAndUpdate()
    
    	c := make(chan struct{}, 1)
    	m.updateCh = c
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 17:36:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitor.java

     * 2. UPDATE build-logic/lifecycle/src/main/kotlin/PrintStackTracesOnTimeoutBuildService.kt if this class is moved to another package.
     *
     * Used to print all JVMs' thread dumps on the machine. When it starts working, the process/machine might be in a bad state (e.g. deadlock),
     * So we don't want it to depend on any third-party libraries. It's executed directly via `java JavaProcessStackTracesMonitor` in `PrintStackTracesOnTimeoutBuildService`.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	"start": "start is the number representing the first replica's index. It may be used to number replicas from an alternate index (eg: 1-indexed) over the default 0-indexed names, or to orchestrate progressive movement of replicas from one StatefulSet to another. If set, replica indices will be in the range:\n  [.spec.ordinals.start, .spec.ordinals.start + .spec.replicas).\nIf unset, defaults to 0. Replica indices will be in the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_distributed_test.cc

                      .ok());
      ASSERT_TRUE(worker_server1->Start().ok());
    
      server_def.set_task_index(2);
      std::unique_ptr<tensorflow::GrpcServer> worker_server2;
      ASSERT_TRUE(tensorflow::GrpcServer::Create(
                      server_def, tensorflow::Env::Default(), &worker_server2)
                      .ok());
      ASSERT_TRUE(worker_server2->Start().ok());
    
      TF_Status* status = TF_NewStatus();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. pilot/pkg/status/distribution/reporter.go

    	r.inProgressResources = make(map[string]*inProgressEntry)
    	go r.readFromEventQueue(stop)
    }
    
    // Start starts the reporter, which watches dataplane ack's and resource changes so that it can update status leader
    // with distribution information.
    func (r *Reporter) Start(clientSet kubernetes.Interface, namespace string, podname string, stop <-chan struct{}) {
    	scope.Info("Starting status follower controller")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. src/strings/strings.go

    	start := -1 // valid span start if >= 0
    	for end, rune := range s {
    		if f(rune) {
    			if start >= 0 {
    				spans = append(spans, span{start, end})
    				// Set start to a negative value.
    				// Note: using -1 here consistently and reproducibly
    				// slows down this code by a several percent on amd64.
    				start = ^start
    			}
    		} else {
    			if start < 0 {
    				start = end
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
Back to top