Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,379 for nack (0.07 sec)

  1. hack/verify-import-boss.sh

    # `.import-restrictions` in each directory, then all imports of the package are
    # checked against each "rule" in the file.
    # Usage: `hack/verify-import-boss.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    kube::util::require-jq
    
    # Doing it this way is MUCH faster than simply saying "all", and there doesn't
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/netns_linux.go

    		defer threadNS.Close()
    
    		// switch to target namespace
    		if err = NetnsSet(fdable); err != nil {
    			return err
    		}
    		defer func() {
    			err := threadNS.Set() // switch back
    			if err == nil {
    				// Unlock the current thread only when we successfully switched back
    				// to the original namespace; otherwise leave the thread locked which
    				// will force the runtime to scrap the current thread, that is maybe
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 10:05:36 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. hack/update-import-aliases.sh

    # This script fixes imports programmatically according to
    # all the imports that we have our preferred alias(es).
    # Usage: `hack/update-import-aliases.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    cd "${KUBE_ROOT}"
    
    ret=0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.cc

                                                   /*exceptedUser=*/nullptr);
      }
    }
    
    // Replaces the StableHLO ops with a separate XlaCallModuleOp, then wires it
    // back into the main graph.
    void ReplaceStablehloOpsWithXlaCallModuleOp(
        const ArrayRef<Value> inputs, const ArrayRef<Value> outputs,
        const SetVector<Operation*>& reverse_subgraph, const int stablehlo_func_id,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/project/artifact/MavenMetadataSourceTest.java

            assertEquals( Artifact.SCOPE_COMPILE, artifact.getScope(), "dependency artifact has wrong scope." );
    
            //check for back-propagation of default scope.
            assertEquals( Artifact.SCOPE_COMPILE, dep.getScope(), "default scope NOT back-propagated to dependency." );
            */
        }
    
        @Test
        @Disabled
        void testShouldUseInjectedTestScopeFromDependencyManagement() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/gatewayclass_test.go

    	// Once we delete it, it should be added back
    	deleteClass(features.GatewayAPIDefaultGatewayClass)
    	expectClass(features.GatewayAPIDefaultGatewayClass, features.ManagedGatewayController)
    
    	// Overwrite the class, controller should not reconcile it back
    	createClass(features.GatewayAPIDefaultGatewayClass, "different-controller")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 08:41:13 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. hack/verify-imports.sh

    # result. Target directory's path and allowed packages against checking are
    # listed in `staging/publishing/import-restrictions.yaml`.
    # Usage: `hack/verify-imports.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    kube::golang::setup_env
    
    GOPROXY=off go install ./cmd/importverifier
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. test/typeparam/list2.go

    func (l *_List[T]) Front() *_Element[T] {
    	if l.len == 0 {
    		return nil
    	}
    	return l.root.next
    }
    
    // Back returns the last element of list l or nil if the list is empty.
    func (l *_List[T]) Back() *_Element[T] {
    	if l.len == 0 {
    		return nil
    	}
    	return l.root.prev
    }
    
    // lazyInit lazily initializes a zero _List value.
    func (l *_List[_]) lazyInit() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tfg-to-tfe.cc

      LogicalResult matchAndRewrite(
          Operation *op, llvm::ArrayRef<Value> operands,
          ConversionPatternRewriter &rewriter) const final {
        llvm::SmallVector<Type, 2> new_types(op->getResultTypes());
        new_types.back() = rewriter.getType<tf_executor::ControlType>();
    
        llvm::SmallVector<Value, 2> new_operands;
        FilterOutBlockArgControlDep(operands, new_operands);
    
        rewriter.replaceOpWithNewOp<tf_executor::ControlTriggerOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/hack/update-codegen.sh

    kube::codegen::gen_helpers \
        --boilerplate "${SCRIPT_ROOT}/hack/boilerplate.go.txt" \
        "${SCRIPT_ROOT}/pkg/apis"
    
    kube::codegen::gen_client \
        --with-watch \
        --with-applyconfig \
        --output-dir "${SCRIPT_ROOT}/pkg/client" \
        --output-pkg "${THIS_PKG}/pkg/client" \
        --boilerplate "${SCRIPT_ROOT}/hack/boilerplate.go.txt" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top