Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 347 for other2 (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                    }
                }
                include 'other'
            """
            def lib = mavenHttpRepo.module("org.gradle.test", "lib", "1.0").publish()
            buildFile << """
                apply plugin: 'java-library'
    
                dependencies {
                    implementation project(":other")
                }
            """
    
            file("other/build.gradle") << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

     * An HTML test report
     * XML test results in a format compatible with the Ant JUnit report task — one that is supported by many other tools, such as CI servers
     * An efficient binary format of the results used by the `Test` task to generate the other formats
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/runtime/mheap.go

    }
    
    // takeAll removes all spans from other and inserts them at the front
    // of list.
    func (list *mSpanList) takeAll(other *mSpanList) {
    	if other.isEmpty() {
    		return
    	}
    
    	// Reparent everything in other to list.
    	for s := other.first; s != nil; s = s.next {
    		s.list = list
    	}
    
    	// Concatenate the lists.
    	if list.isEmpty() {
    		*list = *other
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    * `outputDir`
    +
    The directory where the generated files go. As with input files, there are several annotations for output files and directories. A property representing a single directory requires `@OutputDirectory`. You’ll learn about the others soon.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top