Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for startm (0.12 sec)

  1. cluster/gce/windows/k8s-node-setup.psm1

      return $gateway
    }
    
    # Get pod IP range start based (the third address) on pod cidr
    # We reserve the first two in the cidr range for gateways. Start the cidr
    # range from the third so that IPAM does not allocate those IPs to pods.
    function Get_PodIP_Range_Start([string] $cidr) {
      $network=Get_NetworkDecimal_From_CIDR($cidr)
      $start=ConvertTo_DottedDecimalIP($network+3)
      return $start
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    			state.varSlots[i] = state.varSlots[i][:0]
    		}
    	}
    	if cap(state.slotVars) < len(state.slots) {
    		state.slotVars = make([]VarID, len(state.slots))
    	} else {
    		state.slotVars = state.slotVars[:len(state.slots)]
    	}
    
    	if state.partsByVarOffset == nil {
    		state.partsByVarOffset = &partsByVarOffset{}
    	}
    	for varID, n := range state.vars {
    		parts := state.varParts[n]
    		state.varSlots[varID] = parts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. cmd/batch-handlers.go

    		ri.countItem(batch[i].Size, batch[i].DeleteMarker, true, 1)
    	}
    }
    
    // Start start the batch replication job, resumes if there was a pending job via "job.ID"
    func (r *BatchJobReplicateV1) Start(ctx context.Context, api ObjectLayer, job BatchJobRequest) error {
    	ri := &batchJobInfo{
    		JobID:     job.ID,
    		JobType:   string(job.Type()),
    		StartTime: job.Started,
    	}
    	if err := ri.load(ctx, api, job); err != nil {
    		return err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    		// The second (attempt == 1) instance has been started and is running.
    		{name: initContainers[0].Name, attempt: 1, state: runtimeapi.ContainerState_CONTAINER_RUNNING},
    		// All containers are killed.
    		{name: containers[0].Name, attempt: 0, state: runtimeapi.ContainerState_CONTAINER_EXITED},
    		{name: containers[1].Name, attempt: 0, state: runtimeapi.ContainerState_CONTAINER_EXITED},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  5. pkg/proxy/nftables/proxier.go

    	{nodePortEndpointsCheckChain, filterInputChain, "ct state new"},
    	{serviceEndpointsCheckChain, filterInputChain, "ct state new"},
    	{serviceEndpointsCheckChain, filterForwardChain, "ct state new"},
    	{serviceEndpointsCheckChain, filterOutputChain, "ct state new"},
    
    	{firewallCheckChain, filterPreroutingChain, "ct state new"},
    	{firewallCheckChain, filterOutputChain, "ct state new"},
    
    	{servicesChain, natOutputChain, ""},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

        def setup() {
            // So that dependency resolution results from previous executions do not interfere
            requireOwnGradleUserHomeDir()
        }
    
        def setupBuildWithEachDependencyType() {
            httpServer.start()
            taskTypeWithOutputFileProperty()
    
            remoteRepo.module("group", "lib1", "6500").publish().allowAll()
    
            createDirs("a", "b")
            settingsFile << """
                rootProject.name = 'root'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller.go

    		var creationsSucceeded, creationsFailed int32 = 0, 0
    
    		// Batch the pod creates. Batch sizes start at SlowStartInitialBatchSize
    		// and double with each successful iteration in a kind of "slow start".
    		// This handles attempts to start large numbers of pods that would
    		// likely all fail with the same error. For example a project with a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  8. cmd/kubelet/app/server.go

    	// start the kubelet
    	go k.Run(podCfg.Updates())
    
    	// start the kubelet server
    	if enableServer {
    		go k.ListenAndServe(kubeCfg, kubeDeps.TLSOptions, kubeDeps.Auth, kubeDeps.TracerProvider)
    	}
    	if kubeCfg.ReadOnlyPort > 0 {
    		go k.ListenAndServeReadOnly(netutils.ParseIPSloppy(kubeCfg.Address), uint(kubeCfg.ReadOnlyPort), kubeDeps.TracerProvider)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

         * Returns additional JVM args that should be used to start the build JVM.
         */
        protected List<String> getImplicitBuildJvmArgs() {
            List<String> buildJvmOpts = new ArrayList<>();
            buildJvmOpts.add("-ea");
    
            if (isDebug()) {
                if (System.getenv().containsKey("CI")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. cmd/test-utils_test.go

    	testServer.Server.TLS = config
    	testServer.Server.StartTLS()
    	return testServer
    }
    
    // Starts the test server and returns the TestServer instance.
    func StartTestServer(t TestErrHandler, instanceType string) TestServer {
    	// create an instance of TestServer.
    	testServer := UnstartedTestServer(t, instanceType)
    	testServer.Server.Start()
    	return testServer
    }
    
    // Sets the global config path to empty string.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
Back to top