Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 269 for entryAt (0.67 sec)

  1. src/crypto/aes/gcm_ppc64x.go

    func (c *aesCipherAsm) NewGCM(nonceSize, tagSize int) (cipher.AEAD, error) {
    	var h1, h2 uint64
    	g := &gcmAsm{cipher: c, ks: c.enc[:c.l], nonceSize: nonceSize, tagSize: tagSize}
    
    	hle := make([]byte, gcmBlockSize)
    
    	c.Encrypt(hle, hle)
    
    	// Reverse the bytes in each 8 byte chunk
    	// Load little endian, store big endian
    	if runtime.GOARCH == "ppc64le" {
    		h1 = byteorder.LeUint64(hle[:8])
    		h2 = byteorder.LeUint64(hle[8:])
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    	aestransformer "k8s.io/apiserver/pkg/storage/value/encrypt/aes"
    	"k8s.io/apiserver/pkg/storage/value/encrypt/envelope"
    	envelopekmsv2 "k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2"
    	kmstypes "k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/v2"
    	envelopemetrics "k8s.io/apiserver/pkg/storage/value/encrypt/envelope/metrics"
    	"k8s.io/apiserver/pkg/storage/value/encrypt/identity"
    	"k8s.io/apiserver/pkg/storage/value/encrypt/secretbox"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/google/UnmodifiableCollectionTests.java

      public static void assertMapEntryIsUnmodifiable(Entry<?, ?> entry) {
        try {
          // fine because the call is going to fail without modifying the entry
          @SuppressWarnings("unchecked")
          Entry<?, @Nullable Object> nullableValueEntry = (Entry<?, @Nullable Object>) entry;
          nullableValueEntry.setValue(null);
          fail("setValue on unmodifiable Map.Entry succeeded");
        } catch (UnsupportedOperationException expected) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 20:31:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/internal/plugins/ApplyPluginBuildOperationIntegrationTest.groovy

            ]
    
            pluginIdByClass.size() == expectedPlugins.size() || pluginIdByClass.size() == expectedPlugins.size() + 2 // +2 if we run against the full distribution
            pluginIdByClass.entrySet().containsAll(expectedPlugins.entrySet())
        }
    
        def "captures gradle plugin"() {
            when:
            def initScript = file("init.gradle") << """
                class MyPlugin implements Plugin {
                    void apply(t) {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:36 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableSetMultimap.java

      }
    
      private static final class EntrySet<K, V> extends ImmutableSet<Entry<K, V>> {
        @Weak private final transient ImmutableSetMultimap<K, V> multimap;
    
        EntrySet(ImmutableSetMultimap<K, V> multimap) {
          this.multimap = multimap;
        }
    
        @Override
        public boolean contains(@CheckForNull Object object) {
          if (object instanceof Entry) {
            Entry<?, ?> entry = (Entry<?, ?>) object;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/extensions/property/InstrumentedPropertiesResourceGenerator.java

            return containingType + "#" + propertyName;
        }
    
        private static List<UpgradedProperty> toPropertyEntries(Map<String, List<CallInterceptionRequest>> requests) {
            return requests.entrySet().stream()
                .sorted(Map.Entry.comparingByKey())
                .map(e -> toPropertyEntry(e.getValue()))
                .collect(Collectors.toList());
        }
    
        @SuppressWarnings("OptionalGetWithoutIsPresent")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. src/crypto/cipher/gcm.go

    	var mask [gcmBlockSize]byte
    
    	for len(in) >= gcmBlockSize {
    		g.cipher.Encrypt(mask[:], counter[:])
    		gcmInc32(counter)
    
    		subtle.XORBytes(out, in, mask[:])
    		out = out[gcmBlockSize:]
    		in = in[gcmBlockSize:]
    	}
    
    	if len(in) > 0 {
    		g.cipher.Encrypt(mask[:], counter[:])
    		gcmInc32(counter)
    		subtle.XORBytes(out, in, mask[:])
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    	"k8s.io/apiserver/pkg/features"
    	"k8s.io/apiserver/pkg/storage/value"
    	"k8s.io/apiserver/pkg/storage/value/encrypt/envelope"
    	envelopekmsv2 "k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2"
    	kmstypes "k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/v2"
    	"k8s.io/apiserver/pkg/storage/value/encrypt/envelope/metrics"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/SystemProperties.java

        public synchronized <T> T withSystemProperties(Map<String, String> properties, Factory<T> factory) {
            Map<String, String> originalProperties = new HashMap<String, String>();
            for (Map.Entry<String, String> property : properties.entrySet()) {
                String propertyName = property.getKey();
                String value = property.getValue();
                String originalValue = overrideProperty(propertyName, value);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. src/runtime/symtab.go

    		return funcNameForPrint(fi.name)
    	}
    	return funcNameForPrint(funcname(f.funcInfo()))
    }
    
    // Entry returns the entry address of the function.
    func (f *Func) Entry() uintptr {
    	fn := f.raw()
    	if fn.isInlined() { // inlined version
    		fi := (*funcinl)(unsafe.Pointer(fn))
    		return fi.entry
    	}
    	return fn.funcInfo().entry()
    }
    
    // FileLine returns the file name and line number of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
Back to top