Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 8,903 for usedBy (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/main/java/org/codelibs/fess/mylasta/mail/CrawlerPostcard.java

        /**
         * Set the value of hostname, used in parameter comment. <br>
         * Even if empty string, treated as empty plainly. So "IF pmb != null" is false if empty.
         * @param hostname The parameter value of hostname. (NotNull)
         */
        public void setHostname(String hostname) {
            registerVariable("hostname", hostname);
        }
    
        /**
         * Set the value of jobname, used in parameter comment. <br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. 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)
  9. staging/src/k8s.io/apimachinery/pkg/util/validation/field/errors.go

    	// ErrorTypeDuplicate is used to report collisions of values that must be
    	// unique (e.g. unique IDs).  See Duplicate().
    	ErrorTypeDuplicate ErrorType = "FieldValueDuplicate"
    	// ErrorTypeInvalid is used to report malformed values (e.g. failed regex
    	// match, too long, out of bounds).  See Invalid().
    	ErrorTypeInvalid ErrorType = "FieldValueInvalid"
    	// ErrorTypeNotSupported is used to report unknown values for enumerated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 11.1K 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