Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 76 for Assignment (0.27 sec)

  1. cmd/kubeadm/app/util/config/upgradeconfiguration.go

    	internalcfg := &kubeadmapi.UpgradeConfiguration{}
    
    	// Takes passed flags into account; the defaulting is executed once again enforcing assignment of
    	// static default values to cfg only for values not provided with flags
    	kubeadmscheme.Scheme.Default(defaultversionedcfg)
    	if err := kubeadmscheme.Scheme.Convert(defaultversionedcfg, internalcfg, nil); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

      template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
      linked_ptr(linked_ptr const& ptr) {  // NOLINT
        assert(&ptr != this);
        copy(&ptr);
      }
    
      // Assignment releases the old value and acquires the new.
      template <typename U> linked_ptr& operator=(linked_ptr<U> const& ptr) {
        depart();
        copy(&ptr);
        return *this;
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. pkg/test/framework/components/environment/kube/settings.go

    	// plane cases (where each cluster has its own control plane), the cluster will map to itself (e.g. 0->0).
    	controlPlaneTopology clusterTopology
    
    	// networkTopology is used for the initial assignment of networks to each cluster.
    	// The source of truth clusters' networks is the Cluster instances themselves, rather than this field.
    	networkTopology map[clusterIndex]string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-message.h

      // We'll hold the text streamed to this object here.
      const internal::scoped_ptr< ::std::stringstream> ss_;
    
      // We declare (but don't implement) this to prevent the compiler
      // from implementing the assignment operator.
      void operator=(const Message&);
    };
    
    // Streams a Message to an ostream.
    inline std::ostream& operator <<(std::ostream& os, const Message& sb) {
      return os << sb.GetString();
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. pilot/test/xdstest/validate.go

    		ValidateClusterLoadAssignment(t, l)
    	}
    }
    
    func ValidateClusterLoadAssignment(t testing.TB, l *endpoint.ClusterLoadAssignment) {
    	if err := l.Validate(); err != nil {
    		t.Errorf("cluster load assignment %v is invalid: %v", l.ClusterName, err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. pkg/slices/slices.go

    func Sort[E constraints.Ordered](x []E) []E {
    	if len(x) <= 1 {
    		return x
    	}
    	slices.Sort(x)
    	return x
    }
    
    // Clone returns a copy of the slice.
    // The elements are copied using assignment, so this is a shallow clone.
    func Clone[S ~[]E, E any](s S) S {
    	return slices.Clone(s)
    }
    
    // Delete removes the element i from s, returning the modified slice.
    func Delete[S ~[]E, E any](s S, i int) S {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/lostcancel/lostcancel.go

    // does not "use" the cancel function.  Any reference to the variable
    // counts as a use, even within a nested function literal.
    // If the variable's scope is larger than the function
    // containing the assignment, we assume that other uses exist.
    //
    // checkLostCancel analyzes a single named or literal function.
    func run(pass *analysis.Pass) (interface{}, error) {
    	// Fast path: bypass check if file doesn't use context.WithCancel.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/objectGraph/AssignmentTrace.kt

            val assignmentResolver = assignmentResolverFactory()
            val elementResults = buildList {
                val assignments = resolutionResult.conventionAssignments + resolutionResult.assignments
                assignments.forEach { (lhs, rhs, callId, method) ->
                    add(
                        when (val additionResult = assignmentResolver.addAssignment(lhs, rhs, method, callId.generationId)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 19 16:59:01 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/conventions/SoftwareTypeRegistryIntegration.kt

            // TODO: optimize O(n) lookup
            softwareTypeRegistry.softwareTypeImplementations.find { it.softwareType == softwareTypeName }?.let { softwareType ->
                val assignments = buildList {
                    softwareType.conventions.filterIsInstance<AssignmentRecordConvention>().forEach { it.apply(::add) }
                }
                val additions = buildList {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/AnalysisFilterTest.kt

                }
                """.trimIndent(),
                defaultCodeResolver(elementFilter = AnalysisStatementFilterUtils.isCallNamed("n2").not())
            )
    
            assertEquals(1, result.assignments.size)
            assertEquals("4", result.assignments.single().rhs.originElement.sourceData.text())
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top