Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for knight (0.17 sec)

  1. docs/en/docs/release-notes.md

    ### Docs
    
    * 📝 Update docs about async and response-model with more gender neutral language. PR [#1869](https://github.com/tiangolo/fastapi/pull/1869) by [@Edward-Knight](https://github.com/Edward-Knight).
    
    ### Translations
    
    * 🌐 Add Russian translation for `docs/python-types.md`. PR [#3039](https://github.com/tiangolo/fastapi/pull/3039) by [@dukkee](https://github.com/dukkee).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

              /*possible_tensors=*/float_graph->tensors(),
              /*used_tensors=*/used_tensors, /*quantized=*/true);
          EXPECT_NE(float_tensor, nullptr);
          // If the tensor is a weight, it should have type INT8, otherwise it
          // should stay with type FLOAT32.
          // If the tensor is a bias, it should have type FLOAT32.
          //
          // Check with float_tensor name since quantized tensor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    			errs = appendErrors(errs, validateDestination(weight.Destination))
    		}
    		errs = appendErrors(errs, validateWeight(weight.Weight))
    		totalWeight += weight.Weight
    	}
    	if len(weights) > 1 && totalWeight == 0 {
    		errs = appendErrors(errs, fmt.Errorf("total destination weight = 0"))
    	}
    	return
    }
    
    func validateRouteDestinations(weights []*networking.RouteDestination, gatewaySemantics bool) (errs error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/conversion.go

    		// We don't have a great way to do it. TODO: add a fault injection API for TCP?
    		return &istio.TCPRoute{
    			Route: []*istio.RouteDestination{{
    				Destination: &istio.Destination{
    					Host:   "internal.cluster.local",
    					Subset: "zero-weight",
    					Port:   &istio.PortSelector{Number: 65535},
    				},
    				Weight: 0,
    			}},
    		}, nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/HtmlDependencyReportTask.java

    /**
     * Generates an HTML dependency report. This report
     * combines the features of the ASCII dependency report and those of the ASCII
     * dependency insight report. For a given project, it generates a tree of the dependencies
     * of every configuration, and each dependency can be clicked to show the insight of
     * this dependency.
     * <p>
     * This task generates a report for the task's containing project by default. But it can also generate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/release/notes.md

    -->
    We would like to thank the following community members for their contributions to this release of Gradle:
    
    Be sure to check out the [public roadmap](https://blog.gradle.org/roadmap-announcement) for insight into what's planned for future releases.
    
    ## Upgrade instructions
    
    Switch your build to use Gradle @version@ by updating your wrapper:
    
    `./gradlew wrapper --gradle-version=@version@`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    	{Name: string(v1.ResourceCPU), Weight: 1},
    	{Name: string(v1.ResourceMemory), Weight: 1},
    	{Name: string(v1.ResourcePods), Weight: 1},
    	{Name: string(v1.ResourceStorage), Weight: 1},
    	{Name: string(v1.ResourceEphemeralStorage), Weight: 1},
    	{Name: string(extendedResourceA), Weight: 1},
    	{Name: string(extendedResourceB), Weight: 1},
    	{Name: string(kubernetesIOResourceA), Weight: 1},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/release/notes-template.md

    -->
    
    We would like to thank the following community members for their contributions to this release of Gradle:
    
    Be sure to check out the [public roadmap](https://blog.gradle.org/roadmap-announcement) for insight into what's planned for future releases.
    
    ## Upgrade instructions
    
    Switch your build to use Gradle @version@ by updating your wrapper:
    
    `./gradlew wrapper --gradle-version=@version@`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 14:04:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue.go

    	p.moveRequestCycle = p.schedulingCycle
    
    	if p.isSchedulingQueueHintEnabled && len(p.inFlightPods) != 0 {
    		logger.V(5).Info("Event received while pods are in flight", "event", event.Label, "numPods", len(p.inFlightPods))
    		// AddUnschedulableIfNotPresent might get called for in-flight Pods later, and in
    		// AddUnschedulableIfNotPresent we need to know whether events were
    		// observed while scheduling them.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	if err != nil {
    		return nil, 0, err
    	}
    	return object, resourceVersion, nil
    }
    
    // processEvent is safe as long as there is at most one call to it in flight
    // at any point in time.
    func (w *watchCache) processEvent(event watch.Event, resourceVersion uint64, updateFunc func(*storeElement) error) error {
    	metrics.EventsReceivedCounter.WithLabelValues(w.groupResource.String()).Inc()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top