Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for cherries (0.29 sec)

  1. src/cmd/gofmt/gofmt.go

    		return nil
    	})
    	return <-c
    }
    
    // A reporter reports output, warnings, and errors.
    type reporter struct {
    	prev  <-chan *reporterState
    	state *reporterState
    }
    
    // reporterState carries the state of a reporter instance.
    //
    // Only one reporter at a time may have access to a reporterState.
    type reporterState struct {
    	out, err io.Writer
    	exitCode int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/rewrite.go

    	v := c.field()
    	v.Set(reflect.Append(v, reflect.Zero(v.Type().Elem())))
    	l := v.Len()
    	reflect.Copy(v.Slice(i+1, l), v.Slice(i, l))
    	v.Index(i).Set(reflect.ValueOf(n))
    	c.iter.index++
    }
    
    // application carries all the shared data so we can pass it around cheaply.
    type application struct {
    	pre, post ApplyFunc
    	cursor    Cursor
    	iter      iterator
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    And we add the corresponding native jar file so that each runtime variant now carries two files: the main jar and the native jar.
    
    In the build script, we can now request a specific variant and Gradle will fail with a selection error if more information is needed to make a decision.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top