Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 114 for cherries (0.68 sec)

  1. src/sort/gen_sort_variants.go

    //
    // The paper gives O((M+N)*log(M)) as the number of assignments assuming a
    // rotation algorithm which uses O(M+N+gcd(M+N)) assignments. The argumentation
    // in the paper carries through for Swap operations, especially as the block
    // swapping rotate uses only O(M+N) Swaps.
    //
    // symMerge assumes non-degenerate arguments: a < m && m < b.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

    def IsLegalNumpyRankedBroadcast :
        Constraint<CPred<"hlo::isLegalNumpyRankedBroadcast($0, $1, $2 ? $2.asArrayRef() : ArrayRef<int64_t>{})">,
        "broadcasting should be compatible with TF ops">;
    
    // Return a constant op that carries the shape of the given value.
    def ShapeToConst : NativeCodeCall<"ShapeToConst($_builder, $0)">;
    
    // Check if broadcast dimensions match Tensorflow convention.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    ====
    Choosing the right attributes to set is the hardest thing in this process, because they carry the semantics of the variant.
    Therefore, before adding _new attributes_, you should always ask yourself if there isn't an attribute which carries the semantics you need.
    If there isn't, then you may add a new attribute.
    When adding new attributes, you must also be careful because it's possible that it creates ambiguity during selection.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  4. pkg/model/proxy.go

    	// WorkloadName specifies the name of the workload represented by this node.
    	WorkloadName string `json:"WORKLOAD_NAME,omitempty"`
    
    	// InterceptionMode is the name of the metadata variable that carries info about
    	// traffic interception mode at the proxy
    	InterceptionMode TrafficInterceptionMode `json:"INTERCEPTION_MODE,omitempty"`
    
    	// ServiceAccount specifies the service account which is running the workload.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. pkg/scheduler/eventhandlers.go

    	}
    }
    
    func (sched *Scheduler) updatePodInSchedulingQueue(oldObj, newObj interface{}) {
    	logger := sched.logger
    	oldPod, newPod := oldObj.(*v1.Pod), newObj.(*v1.Pod)
    	// Bypass update event that carries identical objects; otherwise, a duplicated
    	// Pod may go through scheduling and cause unexpected behavior (see #96071).
    	if oldPod.ResourceVersion == newPod.ResourceVersion {
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:04 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. README.md

    ### Upgrade Checklist
    
    - Test all upgrades in a lower environment (DEV, QA, UAT) before applying to production. Performing blind upgrades in production environments carries significant risk.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. pkg/bootstrap/config.go

    			}
    		}
    	}
    
    	// Support passing extra info from node environment as metadata
    	opts = append(opts, getNodeMetadataOptions(cfg.Node, cfg.CompliancePolicy)...)
    
    	// Check if nodeIP carries IPv4 or IPv6 and set up proxy accordingly
    	if network.AllIPv4(cfg.Metadata.InstanceIPs) {
    		// IPv4 only
    		opts = append(opts,
    			option.Localhost(option.LocalhostIPv4),
    			option.Wildcard(option.WildcardIPv4),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    To fix this, you can declare a `Property` as an input instead:
    
    ```
    someTask {
        inputFile.from(jar.archiveFile)
    }
    ```
    
    The `jar.archiveFile` property is of type `Provider<RegularFile>` which properly carries task dependencies: Gradle will be able to know that the file is generated by the `jar` task.
    
    It's actually even easier to add an implicit dependency to the task itself:
    
    ```
    someTask {
        inputFile.from(jar)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  9. src/net/http/httputil/reverseproxy.go

    	}
    
    	ctx := req.Context()
    	if ctx.Done() != nil {
    		// CloseNotifier predates context.Context, and has been
    		// entirely superseded by it. If the request contains
    		// a Context that carries a cancellation signal, don't
    		// bother spinning up a goroutine to watch the CloseNotify
    		// channel (if any).
    		//
    		// If the request Context has a nil Done channel (which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  10. src/image/draw/draw_test.go

    	// 'blended') and both dst and src images are *image.NRGBA (N stands for
    	// Non-premultiplied alpha which *does* distinguish "transparent blue" and
    	// "transparent red"), we prefer that this distinction carries through and
    	// dst's touched pixels should be transparent blue and transparent green,
    	// not just transparent black.
    	{
    		dst := image.NewNRGBA(image.Rect(0, 10, 3, 11))
    		dst.SetNRGBA(0, 10, opaqueGray)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K bytes
    - Viewed (0)
Back to top