Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,560 for usedBy (0.13 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

    /**
     * Cache of {@link PathModularization} instances computed for given {@link Path} elements.
     * The cache is used for avoiding the need to reopen the same files many times when the
     * same dependency is used for different scope. For example a path used for compilation
     * is typically also used for tests.
     */
    class PathModularizationCache {
        /**
         * Module information for each JAR file or output directories.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. platforms/jvm/testing-junit-platform/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    
    description = """Support classes used to run tests with the JUnit Platform testing framework.
    This project is separate from :testing-jvm-infrastructure since it requires junit-platform which itself requires Java 8+.
    This project should only be used by :testing-jvm-infrastructure, however it is not depended upon directly.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 986 bytes
    - Viewed (0)
  3. src/runtime/alg.go

    	return memhash(p, h, size)
    }
    
    // runtime variable to check if the processor we're running on
    // actually supports the instructions used by the AES-based
    // hash implementation.
    var useAeshash bool
    
    // in asm_*.s
    
    // memhash should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/aacfactory/fns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. pkg/apis/resource/validation/validation_resourceclass_test.go

    			class:        testClass(badName, goodName),
    		},
    		"generate-name": {
    			class: func() *resource.ResourceClass {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. pkg/security/security.go

    	FileRootSystemCACert = "file-root:system"
    )
    
    // TODO: For 1.8, make sure MeshConfig is updated with those settings,
    // they should be dynamic to allow migrations without restart.
    // Both are critical.
    var (
    	// Require3PToken disables the use of K8S 1P tokens. Note that 1P tokens can be used to request
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/upgrade/node.go

    }
    
    // newNodeData returns a new nodeData struct to be used for the execution of the kubeadm upgrade node workflow.
    // This func takes care of validating nodeOptions passed to the command, and then it converts
    // options into the internal InitConfiguration type that is used as input all the phases in the kubeadm upgrade node workflow
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/PayloadClassLoaderFactory.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.provider.serialization;
    
    import org.gradle.internal.classloader.ClassLoaderSpec;
    
    import java.util.List;
    
    /**
     * Used to create ClassLoaders used to serialize objects between the tooling api provider and daemon.
     *
     * <p>Implementations are not required to be thread-safe.</p>
     */
    public interface PayloadClassLoaderFactory {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. src/crypto/ed25519/ed25519.go

    	PublicKeySize = 32
    	// PrivateKeySize is the size, in bytes, of private keys as used in this package.
    	PrivateKeySize = 64
    	// SignatureSize is the size, in bytes, of signatures generated and verified by this package.
    	SignatureSize = 64
    	// SeedSize is the size, in bytes, of private key seeds. These are the private key representations used by RFC 8032.
    	SeedSize = 32
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/labels.go

    			code = JumpIntoBlock
    			alt.(*Label).used = true // avoid another error
    		} else {
    			msg = "label %s not declared"
    			code = UndeclaredLabel
    		}
    		check.errorf(jmp.Label, code, msg, name)
    	}
    
    	// spec: "It is illegal to define a label that is never used."
    	for name, obj := range all.elems {
    		obj = resolve(name, obj)
    		if lbl := obj.(*Label); !lbl.used {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/pgen.go

    	if mls != nil {
    		aFollow := mls.Subsumed(a)
    		bFollow := mls.Subsumed(b)
    		if aFollow != bFollow {
    			return bFollow
    		}
    	}
    
    	// Sort used before unused (so AllocFrame can truncate unused
    	// variables).
    	if a.Used() != b.Used() {
    		return a.Used()
    	}
    
    	// Sort pointer-typed before non-pointer types.
    	// Keeps the stack's GC bitmap compact.
    	ap := a.Type().HasPointers()
    	bp := b.Type().HasPointers()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top