Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 401 for getPerm (1.55 sec)

  1. src/hash/maphash/smhasher_test.go

    	b := make([]byte, n*4)
    	genPerm(h, b, s, 0)
    	h.check(t)
    }
    func genPerm(h *hashSet, b []byte, s []uint32, n int) {
    	h.addB(b[:n])
    	if n == len(b) {
    		return
    	}
    	for _, v := range s {
    		b[n] = byte(v)
    		b[n+1] = byte(v >> 8)
    		b[n+2] = byte(v >> 16)
    		b[n+3] = byte(v >> 24)
    		genPerm(h, b, s, n+4)
    	}
    }
    
    type key interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/flow/FlowParameters.java

    package org.gradle.api.flow;
    
    import org.gradle.api.Incubating;
    
    /**
     * Marker interface for {@link FlowAction dataflow action} parameters.
     *
     * <p>
     * Parameter types should be interfaces, only declaring getters for {@link org.gradle.api.provider.Property}-like objects.
     * Example:
     * </p>
     * <pre>
     * public interface MyFlowParameters extends FlowParameters {
     *    Property&lt;String&gt; getString();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 20 11:51:20 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  3. plugin/pkg/admission/certificates/approval/admission_test.go

    	if f.err != nil {
    		return f.decision, "forced error", f.err
    	}
    	if a.GetVerb() != f.verb {
    		return authorizer.DecisionDeny, fmt.Sprintf("unrecognised verb '%s'", a.GetVerb()), nil
    	}
    	if a.GetAPIGroup() != "certificates.k8s.io" {
    		return authorizer.DecisionDeny, fmt.Sprintf("unrecognised groupName '%s'", a.GetAPIGroup()), nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 27 15:50:14 UTC 2020
    - 6.3K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/model/ReplacedBy.java

    /**
     * <p>Attached to a task property to indicate that the property has been replaced by another. Like {@link Internal}, the property is ignored during up-to-date checks.</p>
     *
     * <p>This annotation should be attached to the getter method in Java or the property field in Groovy. You should also consider adding {@link Deprecated} to any replaced property.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 15 16:13:53 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java

                }
    
                try {
                    for (int i = 0; i < tokens.size(); i++) {
                        final AnalyzeToken token = tokens.get(i);
                        final String word = token.getTerm();
                        if (StringUtil.isBlank(word)) {
                            continue;
                        }
                        final String[] words = { word };
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirSyntheticJavaPropertySymbol.kt

            KaFirAnnotationListForDeclaration.create(firSymbol, builder)
        }
    
        override val callableId: CallableId? get() = withValidityAssertion { firSymbol.getCallableId() }
    
        override val getter: KaPropertyGetterSymbol
            get() = withValidityAssertion {
                builder.callableBuilder.buildGetterSymbol(firSymbol.getterSymbol!!)
            }
        override val javaGetterSymbol: KaFunctionSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirMetadataCalculator.kt

                        }
                        fir.getter?.let { getter ->
                            methods.singleOrNull { it.returnType != PsiTypes.voidType() }?.let {
                                bindings.put(METHOD_FOR_FIR_FUNCTION, getter, Method(it.name, getAsmMethodSignatureWithCorrection(it)))
                            }
                        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. plugin/pkg/admission/certificates/ctbattest/admission_test.go

    	if f.err != nil {
    		return f.decision, "forced error", f.err
    	}
    	if a.GetVerb() != f.verb {
    		return authorizer.DecisionDeny, fmt.Sprintf("unrecognised verb '%s'", a.GetVerb()), nil
    	}
    	if a.GetAPIGroup() != "certificates.k8s.io" {
    		return authorizer.DecisionDeny, fmt.Sprintf("unrecognised groupName '%s'", a.GetAPIGroup()), nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_fuzz_setenv.txt

        f.Fatal("environment variable not cleared after FuzzA")
      }
      f.Skip()
    }
    
    func isWorker() bool {
    	f := flag.Lookup("test.fuzzworker")
    	if f == nil {
    		return false
    	}
    	get, ok := f.Value.(flag.Getter)
    	if !ok {
    		return false
    	}
    	return get.Get() == interface{}(true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 943 bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/GradleInternal.java

         * Since Gradle 6, it does not include buildSrc, whereas this scope does.
         *
         * This method is not named as a property getter to avoid getProperties() invoking it.
         *
         * @throws IllegalStateException if called before {@link #setBaseProjectClassLoaderScope(ClassLoaderScope)}
         */
        ClassLoaderScope baseProjectClassLoaderScope();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top