Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 945 for picked (0.18 sec)

  1. pkg/kubelet/pluginmanager/operationexecutor/operation_generator.go

    		return fmt.Errorf("%s: %w", errStr, err)
    	}
    
    	if errStr != "" {
    		return errors.New(errStr)
    	}
    
    	return nil
    }
    
    // Dial establishes the gRPC communication with the picked up plugin socket. https://godoc.org/google.golang.org/grpc#Dial
    func dial(unixSocketPath string, timeout time.Duration) (registerapi.RegistrationClient, *grpc.ClientConn, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. test-site/activator.bat

    set _JAVACMD=%JAVACMD%
    
    if "%_JAVACMD%"=="" (
      if not "%JAVA_HOME%"=="" (
        if exist "%JAVA_HOME%\bin\java.exe" set "_JAVACMD=%JAVA_HOME%\bin\java.exe"
    
        rem if there is a java home set we make sure it is the first picked up when invoking 'java'
        SET "PATH=%JAVA_HOME%\bin;%PATH%"
      )
    )
    
    if "%_JAVACMD%"=="" set _JAVACMD=java
    
    rem Detect if this java is ok to use.
    for /F %%j in ('"%_JAVACMD%" -version  2^>^&1') do (
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 7.2K bytes
    - Viewed (0)
  3. build/README.md

    `rsync` is used transparently behind the scenes to efficiently move data in and out of the container.  This will use an ephemeral port picked by Docker.  You can modify this by setting the `KUBE_RSYNC_PORT` env variable.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 07:20:57 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/JavaPropertyReflectionUtilTest.groovy

        }
    
        def "picks the generic object setter if the typed setter does not match the value type"() {
            when:
            def property = writeableProperty(JavaTestSubject, "myProperty", File.class)
    
            then:
            property.type == Object.class
        }
    
        def "picks the typed setter if it is the better match"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

      //   2. ::operator<< (as the current namespace is enclosed in ::),
      //   3. testing::internal2::operator<< (thanks to the using statement above).
      //
      // The operator<< whose type matches T best will be picked.
      //
      // We deliberately allow #2 to be a candidate, as sometimes it's
      // impossible to define #1 (e.g. when foo is ::std, defining
      // anything in it is undefined behavior unless you are a compiler
      // vendor.).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // different sizes, so we can use sizeof() to test which version is
    // picked by the compiler.  These helpers have no implementations, as
    // we only need their signatures.
    //
    // Given IsNullLiteralHelper(x), the compiler will pick the first
    // version if x can be implicitly converted to Secret*, and pick the
    // second version otherwise.  Since Secret is a secret and incomplete
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  7. doc/next/9-todo.md

    -->
    
    <!-- Items that don't need to be mentioned in Go 1.23 release notes but are picked up by relnote todo.
    
    CL 458895 - an x/playground fix that mentioned an accepted cmd/go proposal go.dev/issue/40728 in Go 1.16 milestone...
    CL 582097 - an x/build CL working on relnote itself; it doesn't need a release note
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. src/runtime/netpoll_windows.go

    	// expired yet. In this case, the completion packet can still be picked up by
    	// another thread, so defer the cancellation until it is really necessary.
    	errno := stdcall2(_NtCancelWaitCompletionPacket, mp.waitIocpHandle, 1)
    	switch errno {
    	case STATUS_CANCELLED:
    		// STATUS_CANCELLED is returned when the associated timer has already expired,
    		// in which automatically cancels the wait completion packet.
    		fallthrough
    	case STATUS_SUCCESS:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

      //   2. ::operator<< (as the current namespace is enclosed in ::),
      //   3. testing::internal2::operator<< (thanks to the using statement above).
      //
      // The operator<< whose type matches T best will be picked.
      //
      // We deliberately allow #2 to be a candidate, as sometimes it's
      // impossible to define #1 (e.g. when foo is ::std, defining
      // anything in it is undefined behavior unless you are a compiler
      // vendor.).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // different sizes, so we can use sizeof() to test which version is
    // picked by the compiler.  These helpers have no implementations, as
    // we only need their signatures.
    //
    // Given IsNullLiteralHelper(x), the compiler will pick the first
    // version if x can be implicitly converted to Secret*, and pick the
    // second version otherwise.  Since Secret is a secret and incomplete
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
Back to top