Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 78 for cheese (0.21 sec)

  1. src/cmd/link/internal/loader/loader.go

    	// Bitmaps and other side structures used to store data used to store
    	// symbol flags/attributes; these are to be accessed via the
    	// corresponding loader "AttrXXX" and "SetAttrXXX" methods. Please
    	// visit the comments on these methods for more details on the
    	// semantics / interpretation of the specific flags or attribute.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    	spillLive [][]ID
    
    	// a set of copies we generated to move things around, and
    	// whether it is used in shuffle. Unused copies will be deleted.
    	copies map[*Value]bool
    
    	loopnest *loopnest
    
    	// choose a good order in which to visit blocks for allocation purposes.
    	visitOrder []*Block
    
    	// blockOrder[b.ID] corresponds to the index of block b in visitOrder.
    	blockOrder []int32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. src/math/big/float_test.go

    	}
    }
    
    // TestFloatAdd32 tests that Float.Add/Sub of numbers with
    // 24bit mantissa behaves like float32 addition/subtraction
    // (excluding denormal numbers).
    func TestFloatAdd32(t *testing.T) {
    	// chose base such that we cross the mantissa precision limit
    	const base = 1<<26 - 0x10 // 11...110000 (26 bits)
    	for d := 0; d <= 0x10; d++ {
    		for i := range [2]int{} {
    			x0, y0 := float64(base), float64(d)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

                }
            """
    
            when:
            fails("app:broken")
    
            then:
            failure.assertHasCause("The consumer was configured to find attribute 'color' with value 'blue'. However we cannot choose between the following variants of project :lib:")
    
            when:
            run("app:resolveView")
    
            then:
            assertTransformationsExecuted(
                singleStep("common.jar"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  5. common/scripts/metallb-native.yaml

                    maximum: 4294967295
                    minimum: 0
                    type: integer
                  nodeSelectors:
                    description: Only connect to this peer on nodes that match one of
                      these selectors.
                    items:
                      properties:
                        matchExpressions:
                          items:
                            properties:
                              key:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Sets.java

       * cartesian set is constructed, the input sets are merely copied. Only as the resulting set is
       * iterated are the individual lists created, and these are not retained after iteration.
       *
       * @param sets the sets to choose elements from, in the order that the elements chosen from those
       *     sets should appear in the resulting lists
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modget/get.go

    				filtered, isPackage, m, unique := r.disambiguate(cs)
    				if !unique {
    					unresolved = append(unresolved, filtered)
    					continue
    				}
    
    				if m.Path == "" {
    					// The query is not viable. Choose an arbitrary candidate from
    					// before filtering and “resolve” it to report a conflict.
    					isPackage, m = r.chooseArbitrarily(cs)
    				}
    				if isPackage {
    					q.matchesPackages = true
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  8. pkg/workloadapi/workload.pb.go

    // These resources cannot be looked up on-demand.
    //
    // In some cases, we do not know the IP address of a Service. These services cannot be used for matching
    // outbound traffic, as we only have L4 attributes to route based on. However,
    // they can be used for Gateways.
    // In this case, the key format will be "network/hostname".
    // These resources cannot be looked up on-demand.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1/types.go

    }
    
    // A StatefulSetSpec is the specification of a StatefulSet.
    type StatefulSetSpec struct {
    	// replicas is the desired number of replicas of the given Template.
    	// These are replicas in the sense that they are instantiations of the
    	// same Template, but individual replicas also have a consistent identity.
    	// If unspecified, defaults to 1.
    	// TODO: Consider a rename of this field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    You should instead declare these as a `FileCollection` input and reference just that.
    
    The same requirement applies to dependency management types with some nuances.
    
    Some types, such as `Configuration` or `SourceDirectorySet`, don't make good task input parameters, as they hold a lot of irrelevant state, and it is better to model these inputs as something more precise.
    We don't intend to make these types serializable at all.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
Back to top