Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 973 for assignOp (0.14 sec)

  1. architecture/standards/0005-introduce-core-ui-architecture-module.md

    This ADR does not specify the owner of this new architecture module. However, as a separate module, it can be assigned ownership independently of the other core services.
    
    ## Status
    
    ACCEPTED
    
    ## Consequences
    
    - Introduce the module and move the services and their implementations.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 23:19:15 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/multi-gateway.status.yaml.golden

        reason: Accepted
        status: "True"
        type: Accepted
      - lastTransitionTime: fake
        message: 'Assigned to service(s) example.com:34000, example.com:80, istio-ingressgateway.istio-system.svc.domain.suffix:34000,
          and istio-ingressgateway.istio-system.svc.domain.suffix:80, but failed to assign
          to all requested addresses: hostname "istio-ingressgateway.not-default.svc.domain.suffix"
          not found'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. src/go/types/assignments.go

    		// TODO(gri) do we need a new "generic" error code here?
    		check.errorf(x, IncompatibleAssign, "cannot assign %s to %s in %s", x, T, context)
    		x.mode = invalid
    		return
    	}
    
    	if isUntyped(x.typ) {
    		target := T
    		// spec: "If an untyped constant is assigned to a variable of interface
    		// type or the blank identifier, the constant is first converted to type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/helper.go

    		field.Set(srcValue.Convert(field.Type()))
    		return nil
    	}
    	return fmt.Errorf("couldn't assign/convert %v to %v", srcValue.Type(), field.Type())
    }
    
    // Field puts the value of fieldName, which must be a member of v, into dest,
    // which must be a variable to which this field's value can be assigned.
    func Field(v reflect.Value, fieldName string, dest interface{}) error {
    	field := v.FieldByName(fieldName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 22:54:34 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/workflow/phase.go

    	// If the values is not set or empty, no flags will be assigned to the command
    	// Nb. global flags are automatically inherited by nested cobra command
    	InheritFlags []string
    
    	// LocalFlags defines the list of flags that should be assigned to the cobra command generated
    	// for this phase.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 15:35:58 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/assignments.go

    		// TODO(gri) do we need a new "generic" error code here?
    		check.errorf(x, IncompatibleAssign, "cannot assign %s to %s in %s", x, T, context)
    		x.mode = invalid
    		return
    	}
    
    	if isUntyped(x.typ) {
    		target := T
    		// spec: "If an untyped constant is assigned to a variable of interface
    		// type or the blank identifier, the constant is first converted to type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. tests/serializer_test.go

    			IsIntern: false,
    		},
    		CustomSerializerString: "world",
    	}
    
    	// first time insert record
    	out := SerializerStruct{}
    	if err := DB.Assign(data).FirstOrCreate(&out).Error; err != nil {
    		t.Fatalf("failed to FirstOrCreate Assigned data, got error %v", err)
    	}
    
    	var result SerializerStruct
    	if err := DB.First(&result, out.ID).Error; err != nil {
    		t.Fatalf("failed to query data, got error %v", err)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 21 14:09:38 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/ClassGeneratorSuffixRegistry.java

            }
            return suffix;
        }
    
        /**
         * Assigns a suffix to use for generated class names.
         */
        public static String assign(String suffix) {
            if (SUFFIXES.putIfAbsent(suffix, markerForSuffix(suffix)) == null) {
                return suffix;
            }
            int index = 1;
            while (true) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. .github/workflows/trusted_partners.js

      return domain;
    };
    
    /** For trusted parters like Intel, we want to auto-run tests
        This allows us to reduce the delay to external partners
        Add Labels - kokoro:force-run
        The PR is also assigned to specific teams to fast track review
        Additional reviewers can be added manually based on PR contents
      @param {!object}
        github enables querying for PR and also create issue using rest endpoint
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 07 13:52:04 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. src/internal/reflectlite/value.go

    func ValueOf(i any) Value {
    	if i == nil {
    		return Value{}
    	}
    	return unpackEface(i)
    }
    
    // assignTo returns a value v that can be assigned directly to typ.
    // It panics if v is not assignable to typ.
    // For a conversion to an interface type, target is a suggested scratch space to use.
    func (v Value) assignTo(context string, dst *abi.Type, target unsafe.Pointer) Value {
    	// if v.flag&flagMethod != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top