Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,060 for associateBy (0.25 sec)

  1. src/go/ast/example_test.go

    	// are going to manipulate.
    	src := `
    // This is the package comment.
    package main
    
    // This comment is associated with the hello constant.
    const hello = "Hello, World!" // line comment 1
    
    // This comment is associated with the foo variable.
    var foo = hello // line comment 2
    
    // This comment is associated with the main function.
    func main() {
    	fmt.Println(hello) // line comment 3
    }
    `
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:44:50 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. src/go/doc/testdata/b.0.golden

    	// 
    	var V notExported
    
    	// 
    	var V1, V2, V4, V5 notExported
    
    
    FUNCTIONS
    	// Associated with comparable type if AllDecls is set. 
    	func ComparableFactory() comparable
    
    	// 
    	func F(x int) int
    
    	// 
    	func F1() notExported
    
    	// Always under the package functions list. 
    	func NotAFactory() int
    
    	// Associated with uint type if AllDecls is set. 
    	func UintFactory() uint
    
    
    TYPES
    	// 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 11 16:05:02 UTC 2022
    - 766 bytes
    - Viewed (0)
  3. src/mime/type.go

    		fn()
    	} else {
    		setMimeTypes(builtinTypesLower, builtinTypesLower)
    		osInitMime()
    	}
    }
    
    // TypeByExtension returns the MIME type associated with the file extension ext.
    // The extension ext should begin with a leading dot, as in ".html".
    // When ext has no associated type, TypeByExtension returns "".
    //
    // Extensions are looked up first case-sensitively, then case-insensitively.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/CancellationTokenSource.java

     *     </li>
     *     <li>Later, you can cancel the associated operations by calling {@link #cancel()} on this token source.</li>
     * </ul>
     *
     * <p>All implementations of this interface are required to be thread safe.</p>
     *
     * @since 2.1
     */
    public interface CancellationTokenSource {
        /**
         * Initiates cancel request. All operations that have been associated with this token will be cancelled.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. src/go/doc/testdata/b.2.golden

    	// 
    	var V notExported
    
    	// 
    	var V1, V2, V4, V5 notExported
    
    
    FUNCTIONS
    	// Associated with comparable type if AllDecls is set. 
    	func ComparableFactory() comparable
    
    	// 
    	func F(x int) int
    
    	// 
    	func F1() notExported
    
    	// Always under the package functions list. 
    	func NotAFactory() int
    
    	// Associated with uint type if AllDecls is set. 
    	func UintFactory() uint
    
    
    TYPES
    	// 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 11 16:05:02 UTC 2022
    - 766 bytes
    - Viewed (0)
  6. src/internal/poll/fd_poll_js.go

    // SetDeadline sets the read and write deadlines associated with fd.
    func (fd *FD) SetDeadline(t time.Time) error {
    	return setDeadlineImpl(fd, t, 'r'+'w')
    }
    
    // SetReadDeadline sets the read deadline associated with fd.
    func (fd *FD) SetReadDeadline(t time.Time) error {
    	return setDeadlineImpl(fd, t, 'r')
    }
    
    // SetWriteDeadline sets the write deadline associated with fd.
    func (fd *FD) SetWriteDeadline(t time.Time) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:12:40 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/core/revived_types/tf_concrete_function.h

      //  function_def - The function_def associated with the created
      //                 TFConcreteFunction. TFConcreteFunction will register this
      //                 function_def with `ctx` on creation, and de-register it on
      //                 destruction. function_def must be non-null, but
      //                 otherwise has no lifetime requirements.
      //  captures - The captured TensorHandles associated with this
      //             TFConcreteFunction.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 19:43:25 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/BuildModel.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.model;
    
    /**
     * Represents a model that is associated with or represents some Gradle build.
     *
     * @since 3.0
     */
    public interface BuildModel {
        /**
         * Returns the identifier for the build that this model is associated with.
         */
        BuildIdentifier getBuildIdentifier();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 926 bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/ProjectModel.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.model;
    
    /**
     * Represents a model that is associated with some Gradle project.
     *
     * @since 3.0
     */
    public interface ProjectModel {
        /**
         * Returns the identifier for the project that this model is associated with.
         */
        ProjectIdentifier getProjectIdentifier();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 922 bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    	}
    }
    
    // getPod fetches a pod by name or IP address.
    // A pod may be missing (nil) for two reasons:
    //   - It is an endpoint without an associated Pod. In this case, expectPod will be false.
    //   - It is an endpoint with an associate Pod, but its not found. In this case, expectPod will be true.
    //     this may happen due to eventually consistency issues, out of order events, etc. In this case, the caller
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top