Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for obtained (0.41 sec)

  1. plugin/pkg/admission/eventratelimit/cache_test.go

    			expected: rateLimiters[0],
    		},
    		{
    			name:     "first obtained",
    			key:      0,
    			expected: rateLimiters[0],
    		},
    		{
    			name:     "second added",
    			key:      1,
    			expected: rateLimiters[1],
    		},
    		{
    			name:     "second obtained",
    			key:      1,
    			expected: rateLimiters[1],
    		},
    		{
    			name:     "first obtained second time",
    			key:      0,
    			expected: rateLimiters[0],
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 08 02:31:37 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_device_compiler_client.h

          const XlaCompiler::CompilationResult& result) override;
    
      // Returns a serialized AOT result obtained by exporting the available
      // `executable` using the XlaCompiler.
      absl::StatusOr<std::string> SerializeExecutable(
          const xla::LocalExecutable& executable) override;
    
      // Returns a serialized AOT result obtained by compiling `result` into an AOT
      // result.
      absl::StatusOr<std::string> BuildSerializedExecutable(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. platforms/software/resources/src/main/java/org/gradle/internal/resource/transfer/ExternalResourceAccessor.java

         *
         * @param location The address of the resource to obtain
         * @param revalidate The resource should be revalidated as part of the request
         * @param action The action to apply to the content of the resource.
         * @return The result of the action if the resource exists, or null if the resource does not exist.
         * @throws ResourceException If the resource may exist, but not could be obtained for some reason.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultValueSourceProviderFactory.java

                }
                Try<@org.jetbrains.annotations.Nullable T> obtained = value.getValue();
                if (obtainedFrom != null) {
                    // We are the first thread to see the obtained value. Let's tell the interested parties about it.
                    valueBroadcaster.getSource().valueObtained(obtainedValue(obtained), obtainedFrom);
                }
                return obtained;
            }
    
            @Nonnull
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:25 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. tools/bug-report/pkg/testdata/output/range_equals.log

    2020-06-29T23:37:27.285053Z	info	FLAG: --disableInternalTelemetry="false"
    2020-06-29T23:37:27.285550Z	info	Version 1.6.3-1e8c62baad31c829c5993235c429248f36a85478-dirty-Modified
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 20:55:53 UTC 2020
    - 242 bytes
    - Viewed (0)
  6. tools/bug-report/pkg/testdata/output/range_not_equals.log

    2020-06-29T23:37:27.285053Z	info	FLAG: --disableInternalTelemetry="false"
    2020-06-29T23:37:27.285550Z	info	Version 1.6.3-1e8c62baad31c829c5993235c429248f36a85478-dirty-Modified
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 01 20:55:53 UTC 2020
    - 242 bytes
    - Viewed (0)
  7. pkg/volume/csimigration/plugin_manager_test.go

    				t.Errorf("Expected migratability of plugin %v: %v does not match obtained migratability: %v", test.pluginName, test.csiMigrationResult, csiMigrationResult)
    			}
    			csiMigrationCompleteResult := pm.IsMigrationCompleteForPlugin(test.pluginName)
    			if csiMigrationCompleteResult != test.csiMigrationCompleteResult {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. src/net/http/httptrace/trace.go

    }
    
    // GotConnInfo is the argument to the [ClientTrace.GotConn] function and
    // contains information about the obtained connection.
    type GotConnInfo struct {
    	// Conn is the connection that was obtained. It is owned by
    	// the http.Transport and should not be read, written or
    	// closed by users of ClientTrace.
    	Conn net.Conn
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/DisabledTaskExecutionOnIncludedBuildsCrossVersionSpec.groovy

    @TargetGradleVersion('>=3.3')
    class DisabledTaskExecutionOnIncludedBuildsCrossVersionSpec extends ToolingApiSpecification {
    
        @TargetGradleVersion('>=3.3 <6.8')
        def "Can't launch tasks from included builds via launchables obtained from GradleProject model"() {
            setup:
            singleProjectBuildInRootFolder("root") {
                settingsFile << """
                    includeBuild 'includedBuild'
                """
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/provider/ValueSource.java

     * to {@link #obtain()} is synchronized.
     * </p>
     *
     * <p>
     * A value source implementation is exempt from the automatic detection of work graph cache inputs.
     * For example, if the {@link #obtain()} method calls {@code System.getenv("FOO")} then changes to
     * the {@code FOO} environment variable only invalidate the cache if the value returned by the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 13:02:13 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top