Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 383 for flive (0.06 sec)

  1. tensorflow/compiler/jit/deadness_analysis.h

    #include "tensorflow/core/graph/graph.h"
    
    namespace tensorflow {
    
    // This analyzes a TensorFlow graph to identify nodes which may have partially
    // dead inputs (i.e. these nodes may have some dead inputs and some alive
    // inputs).
    //
    // For example, the ADD node in the following graph
    //
    //      V0  PRED0    V1  PRED1
    //       |    |       |    |
    //       v    v       v    v
    //       SWITCH       SWITCH
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. tests/test_multi_body_errors.py

        response = client.post("/items/", json=[{"age": "five"}, {"age": "six"}])
        assert response.status_code == 422, response.text
        assert response.json() == IsDict(
            {
                "detail": [
                    {
                        "type": "missing",
                        "loc": ["body", 0, "name"],
                        "msg": "Field required",
                        "input": {"age": "five"},
                    },
                    {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/testdata/mergelocals/integration.go

    	p1.x[i] = j
    	r += p1.x[j]
    	p2.x[i] = j
    	r += p2.x[j]
    	if j != 505 {
    		var xp3 Pointery2
    		xp3.x[i] = j
    		r += xp3.x[j]
    	}
    
    	if i == j*2 {
    		// p2 live on this path
    		p2.x[i] += j
    		r += p2.x[j]
    	} else {
    		// p2 not live on this path
    		var xp4 Pointery2
    		xp4.x[i] = j
    		r += xp4.x[j]
    	}
    
    	return r + G
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 17:42:19 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleHandle.java

         */
        PipedOutputStream getStdinPipe();
    
        /**
         * Returns the stdout output currently received from the build. This is live.
         */
        String getStandardOutput();
    
        /**
         * Returns the stderr output currently received from the build. This is live.
         */
        String getErrorOutput();
    
        /**
         * Forcefully kills the build and returns immediately. Does not block until the build has finished.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. test/abi/uglyfib.go

    //go:registerparams
    //go:noinline
    func f(x int, xm1, xm2, p *int) {
    	var y = [2]int{x - 4, 0}
    	if x < 2 {
    		*p += x
    		return
    	}
    	x -= 3
    	g(*xm1, xm2, &x, p)   // xm1 is no longer live.
    	h(*xm2, &x, &y[0], p) // xm2 is no longer live, but was spilled.
    }
    
    //go:registerparams
    //go:noinline
    func g(x int, xm1, xm2, p *int) {
    	var y = [3]int{x - 4, 0, 0}
    	if x < 2 {
    		*p += x
    		return
    	}
    	x -= 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. test/fixedbugs/bug484.go

    // The liveness code used to say that, in func g, s was live
    // starting at its declaration, because it appears to have its
    // address taken by the closure (different s, but the parser
    // gets slightly confused, a separate bug). The liveness analysis
    // saw s as having its address taken but the register optimizer
    // did not. This mismatch meant that s would be marked live
    // (and therefore initialized) at the call to f, but the register optimizer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission.go

    const (
    	// PluginName indicates the name of admission plug-in
    	PluginName = "NamespaceLifecycle"
    	// how long a namespace stays in the force live lookup cache before expiration.
    	forceLiveLookupTTL = 30 * time.Second
    	// how long to wait for a missing namespace before re-checking the cache (and then doing a live lookup)
    	// this accomplishes two things:
    	// 1. It allows a watch-fed cache time to observe a namespace creation event
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 15 09:52:18 UTC 2021
    - 8.6K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/file/CachingTaskInputFileCollectionTest.groovy

        def collection = new CachingTaskInputFileCollection(TestFiles.resolver(), TestFiles.patternSetFactory, DefaultTaskDependencyFactory.withNoAssociatedProject(), Stub(PropertyHost))
    
        def "results are live prior to task execution"() {
            def files = []
            def f1 = tmpDir.file("f1")
            def f2 = tmpDir.file("f2")
            collection.from(files)
    
            expect:
            collection.files.empty
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 06 01:29:26 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_schema_extra_example/test_tutorial004_an.py

                                                {
                                                    "name": "Baz",
                                                    "price": "thirty five point four",
                                                },
                                            ],
                                        }
                                    )
                                    | IsDict(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/lastappliedupdater_test.go

    				t.Errorf("Error applying object: %v", err)
    			}
    
    			accessor := meta.NewAccessor()
    			annotations, err := accessor.Annotations(f.Live())
    			if err != nil {
    				t.Errorf("Failed to access annotations: %v", err)
    			}
    			if annotations == nil {
    				t.Errorf("No annotations on obj: %v", f.Live())
    			}
    			lastApplied, ok := annotations[internal.LastAppliedConfigAnnotation]
    			if ok || len(lastApplied) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top