Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 5,363 for usedBy (0.14 sec)

  1. pkg/controller/certificates/signer/config/types.go

    	// X509 CA certificate used to issue cluster-scoped certificates
    	ClusterSigningCertFile string
    	// clusterSigningCertFile is the filename containing a PEM-encoded
    	// RSA or ECDSA private key used to issue cluster-scoped certificates
    	ClusterSigningKeyFile string
    
    	// kubeletServingSignerConfiguration holds the certificate and key used to issue certificates for the kubernetes.io/kubelet-serving signer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 02 03:38:15 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/ConnectionVersion4.java

     * <li>Implementations should implement {@link org.gradle.tooling.internal.protocol.test.InternalTestExecutionConnection}. This is used by all consumer versions from 2.6-rc-1.
     * <li>Implementations should implement {@link InternalPhasedActionConnection}. This is used by all consumer versions from 4.8.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/IvyArtifactRepositoryMetaDataProvider.java

        /**
         * Returns true if dynamic resolve mode should be used for Ivy modules. When enabled, the {@code revConstraint} attribute for each dependency declaration
         * is used in preference to the {@code rev} attribute. When disabled (the default), the {@code rev} attribute is always used.
         */
        boolean isDynamicMode();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:54 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  4. test/label.go

    package main
    
    var x int
    
    func f() {
    L1: // ERROR "label .*L1.* defined and not used"
    	for {
    	}
    L2: // ERROR "label .*L2.* defined and not used"
    	select {}
    L3: // ERROR "label .*L3.* defined and not used"
    	switch {
    	}
    L4: // ERROR "label .*L4.* defined and not used"
    	if true {
    	}
    L5: // ERROR "label .*L5.* defined and not used"
    	f()
    L6: // GCCGO_ERROR "previous"
    	f()
    L6: // ERROR "label .*L6.* already defined"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 28 02:31:54 UTC 2020
    - 1K bytes
    - Viewed (0)
  5. src/crypto/des/const.go

    // Triple Data Encryption Algorithm (TDEA) as defined
    // in U.S. Federal Information Processing Standards Publication 46-3.
    //
    // DES is cryptographically broken and should not be used for secure
    // applications.
    package des
    
    // Used to perform an initial permutation of a 64-bit input block.
    var initialPermutation = [64]byte{
    	6, 14, 22, 30, 38, 46, 54, 62,
    	4, 12, 20, 28, 36, 44, 52, 60,
    	2, 10, 18, 26, 34, 42, 50, 58,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 12:31:18 UTC 2017
    - 4.5K bytes
    - Viewed (0)
  6. src/go/doc/comment/testdata/link.txt

    -- input --
    The Go home page is https://go.dev/.
    It used to be https://golang.org.
    
    -- gofmt --
    The Go home page is https://go.dev/.
    It used to be https://golang.org.
    
    -- text --
    The Go home page is https://go.dev/. It used to be https://golang.org.
    
    -- markdown --
    The Go home page is [https://go.dev/](https://go.dev/). It used to be [https://golang.org](https://golang.org).
    
    -- html --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:41 UTC 2022
    - 527 bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zptrace_mipsnnle_linux.go

    package unix
    
    import "unsafe"
    
    // PtraceRegsMipsle is the registers used by mipsle binaries.
    type PtraceRegsMipsle struct {
    	Regs     [32]uint64
    	Lo       uint64
    	Hi       uint64
    	Epc      uint64
    	Badvaddr uint64
    	Status   uint64
    	Cause    uint64
    }
    
    // PtraceGetRegsMipsle fetches the registers used by mipsle binaries.
    func PtraceGetRegsMipsle(pid int, regsout *PtraceRegsMipsle) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. maven-artifact/src/main/java/org/apache/maven/artifact/repository/Authentication.java

        }
    
        /**
         * Set username used to access the repository.
         *
         * @param userName the username used to access repository
         */
        public void setUsername(final String userName) {
            this.username = userName;
        }
    
        /**
         * Get the passphrase of the private key file. The passphrase is used only when host/protocol supports
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zptrace_x86_linux.go

    	Xcs      int32
    	Eflags   int32
    	Esp      int32
    	Xss      int32
    }
    
    // PtraceGetRegs386 fetches the registers used by 386 binaries.
    func PtraceGetRegs386(pid int, regsout *PtraceRegs386) error {
    	return ptracePtr(PTRACE_GETREGS, pid, 0, unsafe.Pointer(regsout))
    }
    
    // PtraceSetRegs386 sets the registers used by 386 binaries.
    func PtraceSetRegs386(pid int, regs *PtraceRegs386) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. src/crypto/rand/rand_unix.go

    		return
    	}
    	Reader = &reader{}
    }
    
    // A reader satisfies reads by reading from urandomDevice
    type reader struct {
    	f    io.Reader
    	mu   sync.Mutex
    	used atomic.Uint32 // Atomic: 0 - never used, 1 - used, but f == nil, 2 - used, and f != nil
    }
    
    // altGetRandom if non-nil specifies an OS-specific function to get
    // urandom-style randomness.
    var altGetRandom func([]byte) (err error)
    
    func warnBlocked() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 01 08:32:46 UTC 2022
    - 1.8K bytes
    - Viewed (0)
Back to top