Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 559 for respective (0.17 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/AbstractNativeBinarySpec.java

        private final Tool linker = new DefaultTool();
        private final Tool staticLibArchiver = new DefaultTool();
    
        // TODO:HH Use managed views for this, only applied when the respective language is applied
        private final Tool assembler = new DefaultTool();
        private final PreprocessingTool cCompiler = new DefaultPreprocessingTool();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/check_test.go

    // string.
    //
    // The harness will verify that each ERROR pattern is a substring of the
    // error reported at that source position, and that each ERRORx pattern
    // is a regular expression matching the respective error.
    // Consecutive comments may be used to indicate multiple errors reported
    // at the same position.
    //
    // For instance, the following test source indicates that an "undeclared"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. pkg/controller/garbagecollector/graph.go

    // nodes. The multi-threaded GarbageCollector.attemptToDeleteItem() reads the nodes.
    // WARNING: node has different locks on different fields. setters and getters
    // use the respective locks, so the return values of the getters can be
    // inconsistent.
    type node struct {
    	identity objectReference
    	// dependents will be read by the orphan() routine, we need to protect it with a lock.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 13:37:56 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/MultiThreadedBuilder.java

                TaskSegment taskSegment,
                Map<MavenProject, ProjectSegment> projectBuildList,
                ThreadOutputMuxer muxer) {
            // gather artifactIds which are not unique so that the respective thread names can be extended with the groupId
            Set<String> duplicateArtifactIds = projectBuildList.keySet().stream()
                    .map(MavenProject::getArtifactId)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/envelope.go

    	cacheSize    int
    	cacheEnabled bool
    }
    
    // NewEnvelopeTransformer returns a transformer which implements a KEK-DEK based envelope encryption scheme.
    // It uses envelopeService to encrypt and decrypt DEKs. Respective DEKs (in encrypted form) are prepended to
    // the data items they encrypt. A cache (of size cacheSize) is maintained to store the most recently
    // used decrypted DEKs in memory.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 14:23:50 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. src/go/types/check_test.go

    // string.
    //
    // The harness will verify that each ERROR pattern is a substring of the
    // error reported at that source position, and that each ERRORx pattern
    // is a regular expression matching the respective error.
    // Consecutive comments may be used to indicate multiple errors reported
    // at the same position.
    //
    // For instance, the following test source indicates that an "undeclared"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. src/go/token/position.go

    // If two Pos values p and q are in the same file, comparing p and q is
    // equivalent to comparing the respective source file offsets. If p and q
    // are in different files, p < q is true if the file implied by p was added
    // to the respective file set before the file implied by q.
    type Pos int
    
    // The zero value for [Pos] is NoPos; there is no file and line information
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  8. platforms/software/resources-http/src/test/resources/org/gradle/internal/resource/transport/http/nexus_dirlisting.html

        of Sonatype, Inc. Apache Maven is a trademark of the Apache Software Foundation. M2eclipse is a trademark of the
        Eclipse Foundation. All other trademarks are the property of their respective owners.
    
    -->
    <html>
      <head>
        <title>Index of /nexus/content/repositories/central/junit/junit/</title>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  9. src/go/ast/print.go

    		}
    		p.printf("}")
    
    	case reflect.Pointer:
    		p.printf("*")
    		// type-checked ASTs may contain cycles - use ptrmap
    		// to keep track of objects that have been printed
    		// already and print the respective line number instead
    		ptr := x.Interface()
    		if line, exists := p.ptrmap[ptr]; exists {
    			p.printf("(obj @ %d)", line)
    		} else {
    			p.ptrmap[ptr] = p.line
    			p.print(x.Elem())
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. src/go/types/labels.go

    	// If there are any forward jumps left, no label was found for
    	// the corresponding goto statements. Either those labels were
    	// never defined, or they are inside blocks and not reachable
    	// for the respective gotos.
    	for _, jmp := range fwdJumps {
    		var msg string
    		var code Code
    		name := jmp.Label.Name
    		if alt := all.Lookup(name); alt != nil {
    			msg = "goto %s jumps into block"
    			code = JumpIntoBlock
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top