Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 450 for eventual (0.19 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/shapes_for_arguments.py

      #
      # Besides checking the shape on the function input argument, this test also
      # checks that the shape on the input argument is propagated to the return
      # value.
      # We eventually want to move the shape inference to a pass separate from
      # the initial import, in which case that aspect of this test doesn't make much
      # sense and will be superceded by MLIR->MLIR shape inference tests.
      #
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/endpoint.go

    			}
    		} else {
    			port = localEndpointPort
    		}
    
    		// overrides the control-plane url using the controlPlaneAddress (and eventually the bindport)
    		return formatURL(host, port).String(), nil
    	}
    
    	return localAPIEndpoint, nil
    }
    
    // GetLocalAPIEndpoint parses an APIEndpoint and returns it as a string,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 11 15:08:59 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/toolchain/java/JavaToolchainFactory.java

            }
    
            return jtc;
        }
    
        public ToolchainPrivate createDefaultToolchain() {
            // not sure it's necessary to provide a default toolchain here.
            // only version can be eventually supplied, and
            return null;
        }
    
        protected Logger getLogger() {
            return logger;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. testing/soak/src/integTest/groovy/org/gradle/launcher/daemon/DaemonPerformanceMonitoringSoakTest.groovy

                "org.gradle.java.home": jdk.javaHome.absolutePath,
                "org.gradle.jvmargs": jvmArgs + " " + version.gc.jvmArgs
            )
        }
    
        def "when build leaks slowly daemon is eventually expired"() {
            when:
            setupTenuredHeapLeak(leakRate)
            then:
            daemonIsExpiredEagerly(maxBuilds, heapSize)
    
            where:
            maxBuilds | heapSize | leakRate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_timeout_stdin.txt

    	# and periodically log to stderr until the WaitDelay expires.
    	#
    	# Once the WaitDelay expires, the copying goroutine for 'go test' stops and
    	# closes the read side of the stderr pipe, and the subprocess will eventually
    	# exit due to a failed write to that pipe.
    
    stdout '^--- PASS: TestOrphanCmd .*\nPASS\nstdin closed'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 02 20:23:27 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. pilot/pkg/xds/pcds.go

    	if !pcdsNeedsPush(req) {
    		return nil, model.DefaultXdsLogDetails, nil
    	}
    	if e.TrustBundle == nil {
    		return nil, model.DefaultXdsLogDetails, nil
    	}
    	// TODO: For now, only TrustBundle updates are pushed. Eventually, this should push entire Proxy Configuration
    	pc := &mesh.ProxyConfig{
    		CaCertificatesPem: e.TrustBundle.GetTrustBundle(),
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 18:25:42 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt

            assertEquals(TaskOutcome.FAILED, result.task(":failed-test-with-leftover:test")!!.outcome)
    
            // leftover files failed tests are reported but not counted as an exception, but cleaned up eventually
            assertEquals(1, StringUtils.countMatches(result.output, "Found non-empty test files dir"))
            assertEquals(1, StringUtils.countMatches(result.output, "Failed to stop service 'testFilesCleanupBuildService'"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 14 12:35:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. pkg/registry/rbac/role/policybased/storage.go

    	nonEscalatingInfo := rest.WrapUpdatedObjectInfo(obj, func(ctx context.Context, obj runtime.Object, oldObj runtime.Object) (runtime.Object, error) {
    		role := obj.(*rbac.Role)
    
    		// if we're only mutating fields needed for the GC to eventually delete this obj, return
    		if rbacregistry.IsOnlyMutatingGCFields(obj, oldObj, kapihelper.Semantic) {
    			return obj, nil
    		}
    
    		rules := role.Rules
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 10:11:16 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  9. pkg/capabilities/capabilities.go

    limitations under the License.
    */
    
    package capabilities
    
    import (
    	"sync"
    )
    
    // Capabilities defines the set of capabilities available within the system.
    // For now these are global.  Eventually they may be per-user
    type Capabilities struct {
    	AllowPrivileged bool
    
    	// Pod sources from which to allow privileged capabilities like host networking, sharing the host
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 12:51:16 UTC 2019
    - 3K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/NamedDomainObjectCollectionSchemaIntegrationTest.groovy

                            "main": "SourceSet",
                            "test": "SourceSet"
                        )
                        assertSchemaIs(repositories,
                            // TODO: These should be more specific eventually
                            "maven": "ArtifactRepository",
                            "ivy": "ArtifactRepository"
                        )
                        assertSchemaIs(configurations,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top