Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,196 for assignOp (0.32 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. pkg/test/framework/components/echo/portgen.go

    }
    
    // SetUsed marks the given port as used, so that it will not be assigned by the
    // generator.
    func (g *portGenerator) SetUsed(port int) *portGenerator {
    	g.used[port] = struct{}{}
    	return g
    }
    
    // IsUsed indicates if the given port has already been used.
    func (g *portGenerator) IsUsed(port int) bool {
    	_, ok := g.used[port]
    	return ok
    }
    
    // Next assigns the next port for the given protocol.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 04 00:24:04 UTC 2022
    - 2.5K 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. 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)
  7. 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)
  8. 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)
  9. 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)
  10. .github/workflows/create_issue.js

     * limitations under the License.
     * =============================================================================
     */
    
    /** Extracts PR from commit message and creates a GitHub Issue on Rollback of PR
      Created issue is assigned to original PR owner and reviewer.
    
      @param {!object}
        github enables querying for PR and also create issue using rest endpoint
        context has the commit message details in the payload
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 18 23:04:59 UTC 2021
    - 2.8K bytes
    - Viewed (0)
Back to top