Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 170 for aligned (0.41 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/stack_ops_decomposition.cc

                getElementTypeOrSelf(while_op.getOperand(i).getType()))) {
          continue;
        }
        int64_t aliased_input = FindAliasedInput(body, i);
        if (aliased_input == i) {
          // Replace aliased stack output uses with input.
          while_op.getResult(i).replaceAllUsesWith(while_op.getOperand(i));
        }
      }
      while_op.replaceAllUsesWith(
          new_while.getResults().take_front(while_op.getNumResults()));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/config/config.go

    		OwnerGroupsExclude:      constants.OwnerGroupsExclude.DefaultValue,
    		HostIPv4LoopbackCidr:    constants.HostIPv4LoopbackCidr.DefaultValue,
    	}
    }
    
    // Command line options
    // nolint: maligned
    type Config struct {
    	ProxyPort               string        `json:"PROXY_PORT"`
    	InboundCapturePort      string        `json:"INBOUND_CAPTURE_PORT"`
    	InboundTunnelPort       string        `json:"INBOUND_TUNNEL_PORT"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/controllermanager_test.go

    			if !alphaFeatures.Has(string(feature)) {
    				areAllRequiredFeaturesAlpha = false
    				break
    			}
    		}
    
    		if areAllRequiredFeaturesAlpha {
    			t.Errorf("alias check failed: controller name %q should not be aliased as it is still guarded by alpha feature gates (%v) and thus should have only a canonical name", name, requiredFeatureGates)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

    import org.gradle.internal.declarativedsl.evaluator.runner.EvaluationResult
    import org.gradle.internal.declarativedsl.language.SourceIdentifier
    import org.gradle.internal.declarativedsl.objectGraph.AssignmentResolver.AssignmentResolutionResult.Assigned
    import org.gradle.internal.declarativedsl.parsing.DefaultLanguageTreeBuilder
    import org.gradle.internal.declarativedsl.parsing.ParserKt
    import org.gradle.test.fixtures.plugin.PluginBuilder
    import org.gradle.tooling.ModelBuilder
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  5. common/config/.golangci.yml

        - ".*\\.pb\\.go"
        - ".*\\.gen\\.go"
      exclude-rules:
        # Exclude some linters from running on test files.
        - path: _test\.go$|^tests/|^samples/
          linters:
            - errcheck
            - maligned
        - path: _test\.go$
          text: "dot-imports: should not use dot imports"
        # We need to use the deprecated module since the jsonpb replacement is not backwards compatible.
        - linters:
            - staticcheck
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/dryrun/dryrun.go

    	kubeadmconstants "k8s.io/kubernetes/cmd/kubeadm/app/constants"
    	"k8s.io/kubernetes/cmd/kubeadm/app/util/apiclient"
    )
    
    // FileToPrint represents a temporary file on disk that might want to be aliased when printing
    // Useful for things like loading a file from /tmp/ but saying to the user "Would write file foo to /etc/kubernetes/..."
    type FileToPrint struct {
    	RealPath  string
    	PrintPath string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. cni/pkg/util/podutil.go

    			"status",
    		)
    	if errors.IsNotFound(err) {
    		return nil
    	}
    	return err
    }
    
    // Get any IPs currently assigned to the Pod.
    //
    // If 'PodIPs' exists, it is preferred (and should be guaranteed to contain the address in 'PodIP'),
    // otherwise fallback to 'PodIP'.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 17:18:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. pkg/controller/tainteviction/taint_eviction_test.go

    		expectDelete bool
    	}{
    		{
    			description: "Creating Node matching already assigned Pod",
    			pods: []corev1.Pod{
    				*testutil.NewPod("pod1", "node1"),
    			},
    			node:         testutil.NewNode("node1"),
    			expectPatch:  false,
    			expectDelete: false,
    		},
    		{
    			description: "Creating tainted Node matching already assigned Pod",
    			pods: []corev1.Pod{
    				*testutil.NewPod("pod1", "node1"),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation.go

    	"k8s.io/apiserver/pkg/cel/library"
    	"k8s.io/apiserver/pkg/cel/metrics"
    )
    
    const (
    	// ScopedVarName is the variable name assigned to the locally scoped data element of a CEL validation
    	// expression.
    	ScopedVarName = "self"
    
    	// OldScopedVarName is the variable name assigned to the existing value of the locally scoped data element of a
    	// CEL validation expression.
    	OldScopedVarName = "oldSelf"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. src/go/types/builtins.go

    		x.mode = value
    		x.typ = Typ[UnsafePointer]
    		if check.recordTypes() {
    			check.recordBuiltinType(call.Fun, makeSig(x.typ, x.typ, y.typ))
    		}
    
    	case _Alignof:
    		// unsafe.Alignof(x T) uintptr
    		check.assignment(x, nil, "argument to unsafe.Alignof")
    		if x.mode == invalid {
    			return
    		}
    
    		if hasVarSize(x.typ, nil) {
    			x.mode = value
    			if check.recordTypes() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
Back to top