Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 555 for below (0.06 sec)

  1. src/go/types/predicates.go

    // This file implements commonly used type predicates.
    
    package types
    
    // isValid reports whether t is a valid type.
    func isValid(t Type) bool { return Unalias(t) != Typ[Invalid] }
    
    // The isX predicates below report whether t is an X.
    // If t is a type parameter the result is false; i.e.,
    // these predicates don't look inside a type parameter.
    
    func isBoolean(t Type) bool        { return isBasic(t, IsBoolean) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/dsl.xml

                as a parameter. The closure is treated as a <firstterm>configuration closure</firstterm> which configures
                some delegate object as it executes. The top level script blocks are listed below.</para>
            <table>
                <title>Build script blocks</title>
                <tr>
                    <td>allprojects</td>
                </tr>
                <tr>
                    <td>artifacts</td>
                </tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 34.7K bytes
    - Viewed (2)
  3. src/cmd/trace/goroutines.go

      border-collapse: collapse;
    }
    td,
    th {
      border: 1px solid black;
      padding-left: 8px;
      padding-right: 8px;
      padding-top: 4px;
      padding-bottom: 4px;
    }
    </style>
    <body>
    <h1>Goroutines</h1>
    Below is a table of all goroutines in the trace grouped by start location and sorted by the total execution time of the group.<br>
    <br>
    Click a start location to view more details about that group.<br>
    <br>
    <table>
      <tr>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/AbstractStringBasedModelInterpolator.java

            // If the build section is present and the project directory is non-null, we should make
            // sure interpolation of the directories below uses translated paths.
            // Afterward, we'll double back and translate any paths that weren't covered during interpolation via the
            // code below...
            translatedPrefixes.add("build.directory");
            translatedPrefixes.add("build.outputDirectory");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/call.go

    			// that makes sense when reported in error messages from infer, below.
    			expr := syntax.NewName(x.Pos(), T.desc)
    			args = []*operand{{mode: value, expr: expr, typ: T.sig}}
    			reverse = true
    		}
    
    		// Rename type parameters to avoid problems with recursive instantiations.
    		// Note that NewTuple(params...) below is (*Tuple)(nil) if len(params) == 0, as desired.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  6. src/go/types/call.go

    			// that makes sense when reported in error messages from infer, below.
    			expr := ast.NewIdent(T.desc)
    			expr.NamePos = x.Pos() // correct position
    			args = []*operand{{mode: value, expr: expr, typ: T.sig}}
    			reverse = true
    		}
    
    		// Rename type parameters to avoid problems with recursive instantiations.
    		// Note that NewTuple(params...) below is (*Tuple)(nil) if len(params) == 0, as desired.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  7. src/encoding/binary/binary.go

    	_ = b[1] // bounds check hint to compiler; see golang.org/issue/14808
    	return uint16(b[0]) | uint16(b[1])<<8
    }
    
    func (littleEndian) PutUint16(b []byte, v uint16) {
    	_ = b[1] // early bounds check to guarantee safety of writes below
    	b[0] = byte(v)
    	b[1] = byte(v >> 8)
    }
    
    func (littleEndian) AppendUint16(b []byte, v uint16) []byte {
    	return append(b,
    		byte(v),
    		byte(v>>8),
    	)
    }
    
    func (littleEndian) Uint32(b []byte) uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    
    ##### Manual Interceptor declaration
    
    We can implement interceptor declaration manually as shown below. 
    These declarations are then read by the annotation processor and a bytecode interceptor is generated.
    
    ```java
    @SpecificJvmCallInterceptors( // <1>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    Gradle also provides a `logger` property to a build script, which is an instance of link:{javadocPath}/org/gradle/api/logging/Logger.html[Logger].
    This interface extends the SLF4J `Logger` interface and adds a few Gradle-specific methods.
    Below is an example of how this is used in the build script:
    
    ====
    include::sample[dir="snippets/tutorial/logging/kotlin",files="build.gradle.kts[tags=use-logger]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. internal/config/storageclass/storage-class.go

    	// Parity below minParityDrives is not supported.
    	if ssParity > 0 && ssParity < minParityDrives {
    		return fmt.Errorf("Standard storage class parity %d should be greater than or equal to %d",
    			ssParity, minParityDrives)
    	}
    
    	// RRS parity drives should be greater than or equal to minParityDrives.
    	// Parity below minParityDrives is not supported.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top