Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 322 for extr6 (0.07 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * of the corresponding getter or setter method.</li>
     *
     * <li>The extra properties of the project.  Each project maintains a map of extra properties, which
     * can contain any arbitrary name -&gt; value pair.  Once defined, the properties of this scope are readable and writable.
     * See <a href="#extraproperties">extra properties</a> for more details.</li>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  2. cluster/images/etcd/migrate/options.go

    	flags.StringVar(&opts.targetStorage, "target-storage", "",
    		"storage version of etcd to migrate to, one of: etcd2, etcd3. If unset fallbacks to TARGET_STORAGE env.")
    	flags.StringVar(&opts.etcdServerArgs, "etcd-server-extra-args", "",
    		"additional etcd server args for starting etcd servers during migration steps, need to set TLS certs flags for multi-member clusters using mTLS for communication. "+
    			"If unset fallbacks to ETCD_CREDS env.")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 09:59:52 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. pkg/kubelet/util/util_windows.go

    func LocalEndpoint(path, file string) (string, error) {
    	// extract the podresources config name from the path. We only need this on windows because the preferred layout of pipes,
    	// this is why we have the extra logic in here instead of changing the function signature. Join the file to make sure the
    	// last path component is a file, so the operation chain works..
    	podResourcesDir := filepath.Base(filepath.Dir(filepath.Join(path, file)))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. src/crypto/tls/cipher_suites.go

    	}
    }
    
    // tls10MAC implements the TLS 1.0 MAC function. RFC 2246, Section 6.2.3.
    func tls10MAC(h hash.Hash, out, seq, header, data, extra []byte) []byte {
    	h.Reset()
    	h.Write(seq)
    	h.Write(header)
    	h.Write(data)
    	res := h.Sum(out)
    	if extra != nil {
    		h.Write(extra)
    	}
    	return res
    }
    
    func rsaKA(version uint16) keyAgreement {
    	return rsaKeyAgreement{}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/decls2/decls2a.go

    	time.Time
    }
    
    func (T1c) Time /* ERROR "field and method with the same name Time" */ () int { return 0 }
    
    // Disabled for now: LookupFieldOrMethod will find Pointer even though
    // it's double-declared (it would cost extra in the common case to verify
    // this). But the MethodSet computation will not find it due to the name
    // collision caused by the double-declaration, leading to an internal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/looprotate.go

    // license that can be found in the LICENSE file.
    
    package ssa
    
    // loopRotate converts loops with a check-loop-condition-at-beginning
    // to loops with a check-loop-condition-at-end.
    // This helps loops avoid extra unnecessary jumps.
    //
    //	 loop:
    //	   CMPQ ...
    //	   JGE exit
    //	   ...
    //	   JMP loop
    //	 exit:
    //
    //	  JMP entry
    //	loop:
    //	  ...
    //	entry:
    //	  CMPQ ...
    //	  JLT loop
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. cmd/kube-apiserver/app/options/options_test.go

    			},
    			AggregatorRejectForwardingRedirects: true,
    			SystemNamespaces:                    []string{"kube-system", "kube-public", "default", "kube-node-lease"},
    		},
    
    		Extra: Extra{
    			ServiceNodePortRange:   kubeoptions.DefaultServiceNodePortRange,
    			ServiceClusterIPRanges: (&net.IPNet{IP: netutils.ParseIPSloppy("192.168.128.0"), Mask: net.CIDRMask(17, 32)}).String(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    	// standard usage message. The extra usage message returned includes all text
    	// added with AddExtraUsage().
    	// The typical use of ExtraUsage is to show any custom flags defined by the
    	// specific pprof plugins being used.
    	ExtraUsage() string
    
    	// AddExtraUsage appends additional text to the end of the extra usage message.
    	AddExtraUsage(eu string)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. pkg/kubelet/util/swap/swap_util.go

    }
    
    // gets /proc/swaps's content as an input, returns true if swap is enabled.
    func isSwapOnAccordingToProcSwaps(procSwapsContent []byte) bool {
    	procSwapsContent = bytes.TrimSpace(procSwapsContent) // extra trailing \n
    	procSwapsStr := string(procSwapsContent)
    	procSwapsLines := strings.Split(procSwapsStr, "\n")
    
    	// If there is more than one line (table headers) in /proc/swaps then swap is enabled
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 10:07:06 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. src/runtime/tracetime.go

    // events more frequently than roughly every 200 ns or so, because that's roughly
    // how long it takes to call through the scheduler.
    // We could be more aggressive and bump this up to 128 ns while still getting
    // useful data, but the extra bit doesn't save us that much and the headroom is
    // nice to have.
    //
    // Hitting this target resolution is easy in the nanotime case: just pick a
    // division of 64. In the cputicks case it's a bit more complex.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top