Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 103 for findMin (0.13 sec)

  1. tensorflow/compiler/jit/compilability_check_util_test.cc

      GraphDef graph_def;
      TF_EXPECT_OK(builder.ToGraphDef(&graph_def));
      std::unique_ptr<Graph> graph(new Graph(flib_def_.get()));
      TF_CHECK_OK(GraphDefBuilderToGraph(builder, graph.get()));
    
      auto while_node_it = std::find_if(
          graph->nodes().begin(), graph->nodes().end(),
          [&](const Node* n) { return n->name() == kFunctionalWhileNodeName; });
      EXPECT_NE(while_node_it, graph->nodes().end());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 22.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/coderepo.go

    		// consumer — gets to determine the module's path
    		//
    		// r.findDir verifies both of these conditions. Execute it now so that
    		// r.Stat will correctly return a notExistError if the go.mod location or
    		// declared module path doesn't match.
    		_, _, _, err := r.findDir(ctx, v)
    		if err != nil {
    			// TODO: It would be nice to return an error like "not a module".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  3. pkg/kubelet/preemption/preemption.go

    // minimal impact for guaranteed pods > minimal impact for burstable pods > minimal impact for besteffort pods.
    // minimal impact is defined as follows: fewest pods evicted > fewest total requests of pods.
    // finding the fewest total requests of pods is considered besteffort.
    type CriticalPodAdmissionHandler struct {
    	getPodsFunc eviction.ActivePodsFunc
    	killPodFunc eviction.KillPodFunc
    	recorder    record.EventRecorder
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 16:53:19 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/storage/storage_factory.go

    	// of exposing one set of concepts.  autoscaling.HPA and extensions.HPA as a for instance
    	// The order of the slice matters!  It is the priority order of lookup for finding a storage location
    	cohabitatingResources []schema.GroupResource
    	// encoderDecoratorFn is optional and may wrap the provided encoder prior to being serialized.
    	encoderDecoratorFn func(runtime.Encoder) runtime.Encoder
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 13:35:58 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  5. pkg/api/v1/pod/util_test.go

    		t.Logf("Missing expected secret paths:\n%s", strings.Join(sets.List[string](missingPaths), "\n"))
    		t.Error("Missing expected secret paths. Verify VisitPodSecretNames() is correctly finding the missing paths, then correct expectedSecretPaths")
    	}
    	if extraPaths := secretPaths.Difference(expectedSecretPaths); len(extraPaths) > 0 {
    		t.Logf("Extra secret paths:\n%s", strings.Join(sets.List(extraPaths), "\n"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 32.1K bytes
    - Viewed (0)
  6. src/testing/quick/quick.go

    func (s SetupError) Error() string { return string(s) }
    
    // A CheckError is the result of Check finding an error.
    type CheckError struct {
    	Count int
    	In    []any
    }
    
    func (s *CheckError) Error() string {
    	return fmt.Sprintf("#%d: failed on input %s", s.Count, toString(s.In))
    }
    
    // A CheckEqualError is the result [CheckEqual] finding an error.
    type CheckEqualError struct {
    	CheckError
    	Out1 []any
    	Out2 []any
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/loopbce.go

    					// Can't overflow because maxint is never a possible value.
    					return true
    				}
    				// If the limit is not a constant, check to see if it is a
    				// negative offset from a known non-negative value.
    				knn, k := findKNN(limit)
    				if knn == nil || k < 0 {
    					return false
    				}
    				// limit == (something nonnegative) - k. That subtraction can't underflow, so
    				// we can trust it.
    				if inclusive {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. docs/de/docs/help-fastapi.md

    Durch das Hinzufügen eines Sterns können andere Benutzer es leichter finden und sehen, dass es für andere bereits nützlich war.
    
    ## Das GitHub-Repository auf Releases beobachten
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:29:57 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/transfer/DefaultCacheAwareExternalResourceAccessorTest.groovy

            _ * cachedResource.externalResourceMetaData >> metaData
            1 * fileRepository.resource(cachedFile, location.uri, metaData) >> resultResource
            0 * _._
        }
    
        def "will use sha1 from metadata for finding candidates if available"() {
            given:
            def localCandidates = Mock(LocallyAvailableResourceCandidates)
            def cached = Mock(CachedExternalResource)
            def candidate = tempDir.createFile("candidate-file")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 17:19:47 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  10. docs/de/docs/alternatives.md

        Diese beiden wurden ausgewählt, weil sie ziemlich beliebt und stabil sind, aber bei einer schnellen Suche könnten Sie Dutzende alternativer Benutzeroberflächen für OpenAPI finden (welche Sie mit **FastAPI** verwenden können).
    
    ### Flask REST Frameworks
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:28 UTC 2024
    - 26.7K bytes
    - Viewed (0)
Back to top