Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,836 for startm (0.11 sec)

  1. pkg/kubelet/cm/memorymanager/memory_manager.go

    	stateImpl, err := state.NewCheckpointState(m.stateFileDirectory, memoryManagerStateFileName, m.policy.Name())
    	if err != nil {
    		klog.ErrorS(err, "Could not initialize checkpoint manager, please drain node and remove policy state file")
    		return err
    	}
    	m.state = stateImpl
    
    	err = m.policy.Start(m.state)
    	if err != nil {
    		klog.ErrorS(err, "Policy start error")
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 00:50:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/it/CrawlTestBase.java

                if (response.getBody().jsonPath().getInt("response.status") == 0) {
                    logger.info("Start scheduler \"{}\"", schedulerId);
                    return;
                }
                ThreadUtil.sleep(1000L);
            }
            fail("could not start job.");
        }
    
        protected static void waitJob(final String namePrefix) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    	for i := 0; i < rb.nrune; i++ {
    		start := rb.rune[i].pos
    		end := start + rb.rune[i].size
    		rb.out = append(rb.out, rb.byte[start:end]...)
    	}
    	return true
    }
    
    // flush appends the normalized segment to out and resets rb.
    func (rb *reorderBuffer) flush(out []byte) []byte {
    	for i := 0; i < rb.nrune; i++ {
    		start := rb.rune[i].pos
    		end := start + rb.rune[i].size
    		out = append(out, rb.byte[start:end]...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. cluster/gce/windows/testonly/install-ssh.psm1

    $OPENSSH_ROOT = 'C:\Program Files\OpenSSH'
    $USER_PROFILE_MODULE = 'C:\user-profile.psm1'
    $WRITE_SSH_KEYS_SCRIPT = 'C:\write-ssh-keys.ps1'
    
    # Starts the Win64-OpenSSH services and configures them to automatically start
    # on subsequent boots.
    function Start_OpenSshServices {
      ForEach ($service in ("sshd", "ssh-agent")) {
        net start ${service}
        Set-Service ${service} -StartupType Automatic
      }
    }
    
    # Installs open-ssh using the instructions in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 05:09:18 UTC 2021
    - 11.6K bytes
    - Viewed (0)
  5. src/html/template/js.go

    	case '+', '-':
    		// ++ and -- are not regexp preceders, but + and - are whether
    		// they are used as infix or prefix operators.
    		start := n - 1
    		// Count the number of adjacent dashes or pluses.
    		for start > 0 && s[start-1] == c {
    			start--
    		}
    		if (n-start)&1 == 1 {
    			// Reached for trailing minus signs since "---" is the
    			// same as "-- -".
    			return jsCtxRegexp
    		}
    		return jsCtxDivOp
    	case '.':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParallelIntegrationTest.groovy

            executer.withTasks("parallelWorkTask")
            def gradle = executer.start()
    
            then:
            workItems.times {
                handler.waitForAllPendingCalls()
                handler.release(1)
            }
    
            then:
            gradle.waitForFinish()
        }
    
        def "does not start more daemons than max-workers"() {
            def maxWorkers = 3
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/unicode/norm/iter.go

    			break
    		} else if v == ssOverflow {
    			i.next = nextCGJCompose
    			break
    		}
    		if i.info.ccc < prevCC {
    			goto doNorm
    		}
    	}
    	return i.returnSlice(startp, i.p)
    doNorm:
    	// reset to start position
    	i.p = startp
    	i.info = i.rb.f.info(i.rb.src, i.p)
    	i.rb.ss.first(i.info)
    	if i.info.multiSegment() {
    		d := i.info.Decomposition()
    		info := i.rb.f.info(input{bytes: d}, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/README.md

    Similar to local-up cluster, kube-proxy in [clusters running on GCE](https://kubernetes.io/docs/getting-started-guides/gce/) run in IPTABLES mode by default. Users need to export the env `KUBE_PROXY_MODE=ipvs` before [starting a cluster](https://kubernetes.io/docs/getting-started-guides/gce/#starting-a-cluster):
    ```shell
    #before running one of the commands chosen to start a cluster:
    # curl -sS https://get.k8s.io | bash
    # wget -q -O - https://get.k8s.io | bash
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 02:32:29 UTC 2021
    - 18.8K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

        }
    
        def "can change template file for default start script generators"() {
            given:
            file('customUnixStartScript.txt') << '${applicationName} start up script for UN*X'
            file('customWindowsStartScript.txt') << '${applicationName} start up script for Windows'
            buildFile << """
    startScripts {
        applicationName = 'myApp'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  10. pkg/registry/core/service/ipallocator/ipallocator.go

    		return modulo(addr.Next())
    	}
    	start, err := addOffsetAddress(first, offset)
    	if err != nil {
    		return func() netip.Addr { return netip.Addr{} }
    	}
    	start = modulo(start)
    	ip := start
    	seen := false
    	return func() netip.Addr {
    		value := ip
    		// is the last or the first iteration
    		if value == start {
    			if seen {
    				return netip.Addr{}
    			}
    			seen = true
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17K bytes
    - Viewed (0)
Back to top