Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,634 for jasper (0.08 sec)

  1. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/PrimitiveHasher.java

         */
        void putBytes(byte[] bytes, int off, int len);
    
        /**
         * Feed a single byte into the hasher.
         */
        void putByte(byte value);
    
        /**
         * Feed an integer byte into the hasher.
         */
        void putInt(int value);
    
        /**
         * Feed a long value byte into the hasher.
         */
        void putLong(long value);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:43:29 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/match/match.go

    						Map: m,
    					},
    				},
    			},
    		},
    		OnNoMatch: nil,
    	}
    	return Mapper{Matcher: match, Map: m}
    }
    
    func NewDestinationIP() Mapper {
    	return newMapper(DestinationIP)
    }
    
    func NewSourceIP() Mapper {
    	return newMapper(SourceIP)
    }
    
    func NewDestinationPort() Mapper {
    	return newMapper(DestinationPort)
    }
    
    type ProtocolMatch struct {
    	TCP, HTTP *matcher.Matcher_OnMatch
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. pkg/ledger/ledger.go

    func (s smtLedger) RootHash() string {
    	return base64.StdEncoding.EncodeToString(s.tree.Root())
    }
    
    func coerceKeyToHashLen(val string) []byte {
    	hasher := murmur3.New64()
    	_, _ = hasher.Write([]byte(val))
    	return hasher.Sum(nil)
    }
    
    func coerceToHashLen(val string) []byte {
    	// hash length is fixed at 64 bits until generic support is added
    	const hashLen = 64
    	byteVal := []byte(val)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/LineEndingNormalizingFileSystemLocationSnapshotHasherTest.groovy

        def "throws IOException generated from hasher"() {
            def file = file('doesNotExist').tap { it.text = "" }
            def delegate = Mock(LineEndingNormalizingFileSystemLocationSnapshotHasher)
            def hasher = LineEndingNormalizingFileSystemLocationSnapshotHasher.wrap(delegate, LineEndingSensitivity.NORMALIZE_LINE_ENDINGS)
            def snapshot = this.snapshot(file)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/functional/src/main/java/org/gradle/internal/Deferrable.java

         */
        T completeAndGet();
    
        /**
         * Maps the result of the invocation via a mapper.
         *
         * @param mapper An inexpensive function on the result.
         * @throws NullPointerException if the mapper maps to {@code null}.
         */
        default <U> Deferrable<U> map(Function<? super T, U> mapper) {
            return new Deferrable<U>() {
                @Override
                public Optional<U> getCompleted() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/MetaInfAwareClasspathResourceHasher.java

            this.attributeResourceFilter = attributeResourceFilter;
        }
    
        @Override
        public void appendConfigurationToHasher(Hasher hasher) {
            super.appendConfigurationToHasher(hasher);
            hasher.putString(getClass().getName());
            attributeResourceFilter.appendConfigurationToHasher(hasher);
        }
    
        @Override
        boolean filter(RegularFileSnapshotContext context) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/hash/HashingOutputStreamTest.java

     */
    public class HashingOutputStreamTest extends TestCase {
      private Hasher hasher;
      private HashFunction hashFunction;
      private final ByteArrayOutputStream buffer = new ByteArrayOutputStream();
    
      @SuppressWarnings("DoNotMock")
      @Override
      protected void setUp() throws Exception {
        super.setUp();
        hasher = mock(Hasher.class);
        hashFunction = mock(HashFunction.class);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 02 16:24:50 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/generic/webhook_test.go

    	mapper.RegisterKindFor(gvr("apps", "v1", "deployments"), "", gvk("apps", "v1", "Deployment"))
    	mapper.RegisterKindFor(gvr("apps", "v1beta1", "deployments"), "", gvk("apps", "v1beta1", "Deployment"))
    	mapper.RegisterKindFor(gvr("apps", "v1alpha1", "deployments"), "", gvk("apps", "v1alpha1", "Deployment"))
    
    	mapper.RegisterKindFor(gvr("extensions", "v1beta1", "deployments"), "scale", gvk("extensions", "v1beta1", "Scale"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 28 19:30:04 UTC 2023
    - 32K bytes
    - Viewed (0)
  9. common/config/license-lint.yml

    - github.com/xeipuuv/gojsonpointer
    # https://github.com/xeipuuv/gojsonreference/blob/master/LICENSE-APACHE-2.0.txt
    - github.com/xeipuuv/gojsonreference
    # Apache 2.0: https://github.com/xeipuuv/gojsonschema/blob/master/LICENSE-APACHE-2.0.txt
    - github.com/xeipuuv/gojsonschema
    
    # Apache 2.0 (but missing appendix): https://github.com/garyburd/redigo/blob/master/LICENSE
    - github.com/garyburd/redigo
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 25 19:26:20 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/meta/multirestmapper_test.go

    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    func TestMultiRESTMapperResourceFor(t *testing.T) {
    	tcs := []struct {
    		name string
    
    		mapper MultiRESTMapper
    		input  schema.GroupVersionResource
    		result schema.GroupVersionResource
    		err    error
    	}{
    		{
    			name:   "empty",
    			mapper: MultiRESTMapper{},
    			input:  schema.GroupVersionResource{Resource: "foo"},
    			result: schema.GroupVersionResource{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 01:49:02 UTC 2018
    - 13.6K bytes
    - Viewed (0)
Back to top