Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 130 for set_kind (0.38 sec)

  1. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsGenerator.java

            CodeBlock result = interceptedCallable.getKind() == CallableKindInfo.STATIC_METHOD ? CodeBlock.of("opcode == $T.INVOKESTATIC", Opcodes.class) :
                interceptedCallable.getKind() == CallableKindInfo.INSTANCE_METHOD ? CodeBlock.of("(opcode == $1T.INVOKEVIRTUAL || opcode == $1T.INVOKEINTERFACE)", Opcodes.class) :
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:50:01 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  2. samples/kind-lb/README.md

    For example, to create two clusters, run the script two times with the following
    parameters:
    
    ```bash
      ./setupkind.sh --cluster-name cluster1 --ip-space 255 -i dual
      ./setupkind.sh --cluster-name cluster2 --ip-space 245 -i dual
    ```
    
    To setup a dual-stack cluster that prefers IPv6 instead of IPv4 (the default)
    
    ```bash
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 02 19:08:19 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testing/testfieldmanager.go

    func (f *FakeObjectCreater) New(gvk schema.GroupVersionKind) (runtime.Object, error) {
    	u := unstructured.Unstructured{Object: map[string]interface{}{}}
    	u.SetAPIVersion(gvk.GroupVersion().String())
    	u.SetKind(gvk.Kind)
    	return &u, nil
    }
    
    // FakeObjectConvertor implements runtime.ObjectConvertor but it
    // actually does nothing but return its input.
    type FakeObjectConvertor struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/SignatureUtils.java

            return callableInfo.getParameters().stream().anyMatch(it -> it.getKind() == ParameterKindInfo.CALLER_CLASS_NAME);
        }
    
        public static boolean hasInjectVisitorContext(CallableInfo callableInfo) {
            return callableInfo.getParameters().stream().anyMatch(it -> it.getKind() == ParameterKindInfo.INJECT_VISITOR_CONTEXT);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 15:45:10 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. src/runtime/export_debug_ppc64le_test.go

    }
    
    func (h *debugCallHandler) saveSigContext(ctxt *sigctxt) {
    	sp := ctxt.sp()
    	sp -= 4 * goarch.PtrSize
    	ctxt.set_sp(sp)
    	*(*uint64)(unsafe.Pointer(uintptr(sp))) = ctxt.link() // save the current lr
    	ctxt.set_link(ctxt.pc())                              // set new lr to the current pc
    	// Write the argument frame size.
    	*(*uintptr)(unsafe.Pointer(uintptr(sp - 32))) = h.argSize
    	// Save current registers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 15:33:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. platforms/jvm/java-compiler-plugin/src/main/java/org/gradle/internal/compiler/java/listeners/classnames/ClassNameCollector.java

            return symbol;
        }
    
        private static boolean isPackageInfoFile(TaskEvent e, File asSourceFile) {
            return e.getKind() == TaskEvent.Kind.ANALYZE && "package-info.java".equals(asSourceFile.getName());
        }
    
        private static boolean isClassGenerationPhase(TaskEvent e) {
            return e.getKind() == TaskEvent.Kind.GENERATE;
        }
    
        public void registerMapping(String key, String symbol) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:06:26 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/SignatureTree.java

            Optional<ParameterInfo> varargParameter = callable.getParameters().stream().filter(it -> it.getKind() == ParameterKindInfo.VARARG_METHOD_PARAMETER).findAny();
            CallableKindInfo kind = callable.getKind();
            return Stream.of(
                // Match the `Class<?>` in `receiver` for static methods and constructors
                kind == STATIC_METHOD || kind == AFTER_CONSTRUCTOR
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/helpers.go

    			return err
    		}
    		// This is hacky. Set the item's Kind and APIVersion to those inferred
    		// from the List.
    		if len(unstruct.GetKind()) == 0 && len(unstruct.GetAPIVersion()) == 0 {
    			unstruct.SetKind(itemKind)
    			unstruct.SetAPIVersion(listAPIVersion)
    		}
    		list.Items = append(list.Items, *unstruct)
    	}
    	return nil
    }
    
    type jsonFallbackEncoder struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 20:39:55 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  9. istioctl/pkg/validate/validate.go

    		_ = un.EachListItem(func(item runtime.Object) error {
    			castItem := item.(*unstructured.Unstructured)
    			if castItem.GetKind() == name.ServiceStr {
    				err := v.validateServicePortPrefix(istioNamespace, castItem)
    				if err != nil {
    					errs = multierror.Append(errs, err)
    				}
    			}
    			if castItem.GetKind() == name.DeploymentStr {
    				err := v.validateDeploymentLabel(istioNamespace, castItem, writer)
    				if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 17:58:52 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/util/NameUtil.java

        }
    
        public static String interceptedJvmMethodName(CallableInfo callableInfo) {
            if (callableInfo.getKind() == CallableKindInfo.GROOVY_PROPERTY_GETTER) {
                return getterName(callableInfo.getCallableName(), callableInfo.getReturnType().getType());
            }
            if (callableInfo.getKind() == CallableKindInfo.GROOVY_PROPERTY_SETTER) {
                return setterName(callableInfo.getCallableName());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top