Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 145 for Avery (0.06 sec)

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

    func (l *Loader) SetAttrCgoExportDynamic(i Sym, v bool) {
    	if v {
    		l.attrCgoExportDynamic[i] = struct{}{}
    	} else {
    		delete(l.attrCgoExportDynamic, i)
    	}
    }
    
    // ForAllCgoExportDynamic calls f for every symbol that has been
    // marked with the "cgo_export_dynamic" compiler directive.
    func (l *Loader) ForAllCgoExportDynamic(f func(Sym)) {
    	for s := range l.attrCgoExportDynamic {
    		f(s)
    	}
    }
    
    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. pkg/controller/podautoscaler/replica_calculator_test.go

    		},
    	}
    
    	tc.runTest(t)
    
    	// Reuse the data structure above, now testing "unscaling".
    	// Now, we test that no scaling happens if we are in a very close margin to the tolerance
    	target = math.Abs(1/(requestedToUsed*(1-defaultTestingTolerance))) + .004
    	finalCPUPercentTarget = int32(target * 100)
    	tc.resource.targetUtilization = finalCPUPercentTarget
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    periodically for updates. The monitoring period is 20s by default and is configurable
    via a flag.
    
    HTTP endpoint: HTTP endpoint passed as a parameter on the command line. This endpoint
    is checked every 20 seconds (also configurable with a flag).`,
    		// The Kubelet has special flag parsing requirements to enforce flag precedence rules,
    		// so we do all our parsing manually in Run, below.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    // at `index`, which is 1. Multiplying such a tensor with a 2D filter esentially
    // returns the single column in filter as a 1D tensor. If the input has multiple
    // elements, repeat this for every entry, forming the higher dimensions in the
    // result tensor. For instance, if:
    //   input = [1, 2]
    //   depth = 4
    //   filter = [[5, 7, 11, 13], [17, 19, 23, 29]]
    // then:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    // and ensuers those params are the only ones used.
    //
    // Also ensures NotFound action is enforced correctly by deleting all found
    // params and ensuring the Action is used.
    //
    // This test is not meant to test every possible scenario of matching/not matching:
    // only that each ParamRef CAN be evaluated correctly for both cluster scoped
    // and namespace-scoped request kinds, and that the failure action is correctly
    // applied.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

            if (block_arg.getParentRegion() == op->getParentRegion())
              external_values.insert(v);
          }
          return WalkResult::advance();
        });
      }
      return external_values;
    }
    
    // Returns every operand of `cluster_ops` that does not come from an op in
    // `cluster_ops`.
    llvm::SmallSetVector<Value, 4> GetAllExternalOperands(
        const llvm::SmallSetVector<Operation*, 4>& cluster_ops) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{decQuantity(7*1024*1024, -8, DecimalExponent), (7 * 1024 * 1024) / float64(100000000)},
    
    		// very large numbers
    		{Quantity{d: maxAllowed, Format: DecimalSI}, math.MaxInt64},
    		{Quantity{d: maxAllowed, Format: BinarySI}, math.MaxInt64},
    		{decQuantity(12, 18, DecimalSI), 1.2e19},
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Preconditions.java

     * environment if possible) before spending a lot of effort on tweaking a particular element.
     *
     * <h3>Other types of preconditions</h3>
     *
     * <p>Not every type of precondition failure is supported by these methods. Continue to throw
     * standard JDK exceptions such as {@link java.util.NoSuchElementException} or {@link
     * UnsupportedOperationException} in the situations they are intended for.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

    </project>
    """
            when:
            parsePom()
    
            then:
            def dependencies = dependenciesOnly(metadata.dependencies)
            dependencies.size() == 2
            dependencies.every {it.selector.version == outputVersion}
    
            where:
            inputVersion | outputVersion
            "RELEASE"    | "latest.release"
            "LATEST"     | "latest.integration"
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  10. src/cmd/dist/build.go

    		// Only use the VERSION file if it is non-empty.
    		if b != "" {
    			return b
    		}
    	}
    
    	// The $GOROOT/VERSION.cache file is a cache to avoid invoking
    	// git every time we run this command. Unlike VERSION, it gets
    	// deleted by the clean command.
    	path = pathf("%s/VERSION.cache", goroot)
    	if isfile(path) {
    		return chomp(readfile(path))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
Back to top