Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 129 for set_kind (0.24 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/ProjectDependency.java

        }
    
        @Override
        public int hashCode() {
            return Objects.hash(super.hashCode(), publication, publicationSourcePath, publicationJavadocPath);
        }
    
        @Override
        public String getKind() {
            return "src";
        }
    
        @Override
        public String toString() {
            return "ProjectDependency{" +
                "publication=" + publication +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/SourceFolder.java

        }
    
        public String getName() {
            return name;
        }
    
        public void setName(String name) {
            this.name = name;
        }
    
        @Override
        public String getKind() {
            return "src";
        }
    
        public String getAbsolutePath() {
            return dir.getAbsolutePath();
        }
    
        public void trim() {
            trim(null);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/rules/rules.go

    func IsExemptAdmissionConfigurationResource(attr admission.Attributes) bool {
    	gvk := attr.GetKind()
    	if gvk.Group == "admissionregistration.k8s.io" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:38:55 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/construct.go

    	// Set the kind and apiVersion
    	if typeAcc, err := apimeta.TypeAccessor(obj); err != nil {
    		return nil, err
    	} else {
    		typeAcc.SetKind(gvk.Kind)
    		typeAcc.SetAPIVersion(gvk.GroupVersion().String())
    	}
    
    	return obj, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 19:12:59 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/MatchesSignatureGeneratingSignatureTreeVisitor.java

        }
    
        private static CodeBlock argClassesExpression(CallInterceptionRequest leafInCurrent) {
            return leafInCurrent.getInterceptedCallable().getParameters()
                .stream()
                .filter(it -> it.getKind().isSourceParameter())
                .map(it -> CodeBlock.of("$T.class", TypeUtils.typeName(it.getParameterType())))
                .collect(CodeBlock.joining(", ", "new Class<?>[] {", "}"));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

      Type getElementType() {
        return mlir::cast<ShapedType>(value_.getType()).getElementType();
      }
    
      // For LLVM style RTTI.
      static bool classof(const AbstractTensorHandle* ptr) {
        return ptr->getKind() == kMlir;
      }
    
      // Return default (TFT_UNSET) full type information. This could be updated in
      // the future if full type information is needed.
      tensorflow::FullTypeDef FullType() const override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  7. plugin/pkg/admission/limitranger/admission.go

    	// update request will always fail pod validation because those fields are immutable once the object is created.
    	if a.GetKind().GroupKind() == api.Kind("Pod") && a.GetOperation() == admission.Update {
    		return false
    	}
    
    	return a.GetKind().GroupKind() == api.Kind("Pod") || a.GetKind().GroupKind() == api.Kind("PersistentVolumeClaim")
    }
    
    // SupportsLimit always returns true.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 13:04:39 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/resource/helper_test.go

    				switch options.Continue {
    				case "":
    					metadataAccessor.SetContinue(&obj, "abc")
    				case "abc":
    					metadataAccessor.SetContinue(&obj, "def")
    				case "def":
    					metadataAccessor.SetKind(&obj, "ListComplete")
    				}
    				return &obj, nil
    			},
    			expectedTokens: []string{"", "abc", "def"},
    		},
    		{
    			name:        "stops looping if listFunc returns an error",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 09:47:52 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

                    }
                    for (final SearchHit hit : hits) {
                        final SuggestItem item = SuggestItem.parseSource(hit.getSourceAsMap());
                        item.setDocFreq(0);
                        item.setKinds(Stream.of(item.getKinds()).filter(kind -> kind != SuggestItem.Kind.DOCUMENT)
                                .toArray(count -> new SuggestItem.Kind[count]));
                        updateItems.add(item);
                    }
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ScopeProvider.kt

                    val overridden = (it as CallableMemberDescriptor).overriddenDescriptors.firstOrNull()
                    overridden?.newCopyBuilder()
                        ?.setModality(Modality.OPEN)
                        ?.setKind(CallableMemberDescriptor.Kind.DELEGATION)
                        ?.setDispatchReceiverParameter(it.dispatchReceiverParameter)
                        ?.setPreserveSourceElement()
                        ?.build() as? D ?: it
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top