Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 184 for other2 (0.59 sec)

  1. src/cmd/go/internal/modload/load.go

    			// ones! — is not a Go package, and we can't resolve it to a package
    			// path because that path could plausibly be provided by some other
    			// module.
    			//
    			// Any other error indicates that the package “exists” (at least in the
    			// sense that it cannot exist in any other module), but has some other
    			// problem (such as a syntax error).
    			return "", err
    		}
    	}
    
    	for _, mod := range MainModules.Versions() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            then:
            thrown InvalidUserDataException
        }
    
        def "reports indirect cycle in extended configurations"() {
            def configuration = conf()
            def conf1 = conf("other")
            def conf2 = conf("other2")
    
            when:
            configuration.extendsFrom(conf1)
            conf1.extendsFrom(conf2)
            conf2.extendsFrom(configuration)
    
            then:
            thrown InvalidUserDataException
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            property.getOrElse(toMutable(["other"])) == toMutable(["other"])
    
            when:
            property.get()
    
            then:
            def e = thrown(MissingValueException)
            e.message == "Cannot query the value of ${displayName} because it has no value available."
        }
    
        def "property has no value when set to provider with no value and other values appended"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_utils_test.go

    					Name:       "simon",
    					UID:        "other-uid",
    				},
    			},
    			shouldReportUnexpectedController: false,
    		},
    		{
    			name: "other pod controller",
    			refs: []metav1.OwnerReference{
    				{
    					APIVersion: "v1",
    					Kind:       "Pod",
    					Name:       "simon",
    					UID:        "other-uid",
    					Controller: ptr.To(true),
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context.go

    }
    
    func (r ReasonStats) Merge(other ReasonStats) {
    	for reason, count := range other {
    		r[reason] += count
    	}
    }
    
    func (r ReasonStats) CopyMerge(other ReasonStats) ReasonStats {
    	if len(r) == 0 {
    		return other
    	}
    	if len(other) == 0 {
    		return r
    	}
    
    	merged := make(ReasonStats, len(r)+len(other))
    	merged.Merge(r)
    	merged.Merge(other)
    
    	return merged
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  6. plugin/pkg/admission/noderestriction/admission_test.go

    			err:        `is not allowed to modify labels: foo.node-restriction.kubernetes.io/foo, node-restriction.kubernetes.io/foo, other.k8s.io/foo, other.kubernetes.io/foo`,
    		},
    
    		// Other node object
    		{
    			name:       "forbid create of other node",
    			podsGetter: noExistingPods,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

          self.assertTrue(re.search('stablehlo.add.*xi32>', module_str))
        # Consider if there is a way to check if activation fusion is properly
        # done in MLIR level.
        # Tests that the quantized graph outputs similar values. The rtol and atol
        # values are arbitrary.
        self.assertAllClose(new_outputs, expected_outputs, rtol=0.3, atol=0.2)
    
        # Due to other meta data, the compression is not exactly 1/4.
        self.assertLess(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    		// 	  conflicts with other queries. (The other query always wins.)
    
    		pkgMods, err := r.queryPackages(ctx, path, version, r.selected)
    		for _, u := range pkgMods {
    			if u == m {
    				// The selected package version is already upgraded appropriately; there
    				// is no need to change it.
    				return true
    			}
    		}
    
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    		}
    		expectServiceInstances(t, sd, httpStaticHost, 0, instances, instances2)
    		// Service change, so we need a full push
    		expectEvents(t, events,
    			Event{Type: "service", ID: "other.com", Namespace: httpStaticOverlayUpdated.Namespace},
    			Event{Type: "eds cache", ID: "other.com", Namespace: httpStaticOverlayUpdated.Namespace},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/buildlist.go

    		switch {
    		case pkg.flags.has(pkgInAll):
    			// pkg is transitively imported by a package or test in the main module.
    			// We need to promote the module that maintains it to a root: if some
    			// other module depends on the main module, and that other module also
    			// uses a pruned module graph, it will expect to find all of our
    			// transitive dependencies by reading just our go.mod file, not the go.mod
    			// files of everything we depend on.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top