Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 217 for Potato (0.18 sec)

  1. cmd/kubeadm/app/cmd/phases/init/bootstraptoken.go

    	if err := nodebootstraptokenphase.AutoApproveNodeBootstrapTokens(client); err != nil {
    		return errors.Wrap(err, "error auto-approving node bootstrap tokens")
    	}
    
    	// Create/update RBAC rules that makes the nodes to rotate certificates and get their CSRs approved automatically
    	if err := nodebootstraptokenphase.AutoApproveNodeCertificateRotation(client); err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/LOONG64Ops.go

    		{name: "ROTR", argLength: 2, reg: gp21, asm: "ROTR"},                      // arg0 right rotate by (arg1 mod 32) bits
    		{name: "ROTRV", argLength: 2, reg: gp21, asm: "ROTRV"},                    // arg0 right rotate by (arg1 mod 64) bits
    		{name: "ROTRconst", argLength: 1, reg: gp11, asm: "ROTR", aux: "Int64"},   // uint32(arg0) right rotate by auxInt bits, auxInt should be in the range 0 to 31.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:19 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    		debugPrintf("No file")
    		return nil, fmt.Errorf("counter is not initialized - was Open called?")
    	}
    
    	// Note: don't call f.rotate here as this will enqueue a follow-up rotation.
    	_, cleanup := f.rotate1()
    	cleanup()
    
    	if f.err != nil {
    		return nil, fmt.Errorf("failed to rotate mapped file - %v", f.err)
    	}
    	current := f.current.Load()
    	if current == nil {
    		return nil, fmt.Errorf("counter has no mapped file")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. pilot/pkg/status/distribution/reporter_test.go

    	Expect(rpt.InProgressResources).To(Equal(map[string]int{
    		myResources[0].String(): 2,
    		myResources[1].String(): 1,
    		myResources[2].String(): 2,
    	}))
    	Expect(r.inProgressResources).NotTo(ContainElement(resources[0]))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_test.go

    					g.Expect(thresholds.MaxRequests).NotTo(BeNil())
    					g.Expect(thresholds.MaxRequests.Value).To(Equal(uint32(expected.Http.Http2MaxRequests)))
    					g.Expect(cluster.TypedExtensionProtocolOptions).NotTo(BeNil())
    					anyOptions := cluster.TypedExtensionProtocolOptions[v3.HttpProtocolOptionsType]
    					g.Expect(anyOptions).NotTo(BeNil())
    					httpProtocolOptions := &http.HttpProtocolOptions{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  6. src/slices/slices.go

    		return s
    	}
    
    	// The hard case - v overlaps c or d. We can't just shift up
    	// the data because we'd move or clobber the values we're trying
    	// to insert.
    	// So instead, write v on top of d, then rotate.
    	copy(s[n:], v)
    
    	// Now we have
    	// s: aaaaaaaabbbbccccccccvvvv
    	//            ^   ^       ^   ^
    	//            i  i+m      n  n+m
    
    	rotateRight(s[i:], m)
    
    	// Now we have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 29 14:01:59 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/istio_ca.go

    	enableJitterForRootCertRotator = env.Register("CITADEL_ENABLE_JITTER_FOR_ROOT_CERT_ROTATOR",
    		true,
    		"If true, set up a jitter to start root cert rotator. "+
    			"Jitter selects a backoff time in seconds to start root cert rotator, "+
    			"and the back off time is below root cert check interval.")
    
    	k8sInCluster = env.Register("KUBERNETES_SERVICE_HOST", "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. src/main/resources/fess_indices/fess/cs/stopwords.txt

    a
    s
    k
    o
    i
    u
    v
    z
    dnes
    cz
    tímto
    budeš
    budem
    byli
    jseš
    můj
    svým
    ta
    tomto
    tohle
    tuto
    tyto
    jej
    zda
    proč
    máte
    tato
    kam
    tohoto
    kdo
    kteří
    mi
    nám
    tom
    tomuto
    mít
    nic
    proto
    kterou
    byla
    toho
    protože
    asi
    ho
    naši
    napište
    re
    což
    tím
    takže
    svých
    její
    svými
    jste
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 992 bytes
    - Viewed (0)
  9. src/net/dnsconfig_unix_test.go

    		want: &dnsConfig{
    			servers:    []string{"8.8.8.8:53", "[2001:4860:4860::8888]:53", "[fe80::1%lo0]:53"},
    			search:     []string{"localdomain."},
    			ndots:      5,
    			timeout:    10 * time.Second,
    			attempts:   3,
    			rotate:     true,
    			unknownOpt: true, // the "options attempts 3" line
    		},
    	},
    	{
    		name: "testdata/domain-resolv.conf",
    		want: &dnsConfig{
    			servers:  []string{"8.8.8.8:53"},
    			search:   []string{"localdomain."},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 17:41:32 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    	}
    
    	return op
    }
    
    // assembler syntax for the various shifts.
    // @x> is a lie; the assembler uses @> 0
    // instead of @x> 1, but i wanted to be clear that it
    // was a different operation (rotate right extended, not rotate right).
    var plan9Shift = []string{"<<", ">>", "->", "@>", "@x>"}
    
    func plan9Arg(inst *Inst, pc uint64, symname func(uint64) (string, uint64), arg Arg) string {
    	switch a := arg.(type) {
    	case Endian:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top