Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 140 for Implementation (0.17 sec)

  1. cmd/iam.go

    )
    
    // LoadGroup - loads a specific group from storage, and updates the
    // memberships cache. If the specified group does not exist in
    // storage, it is removed from in-memory maps as well - this
    // simplifies the implementation for group removal. This is called
    // only via IAM notifications.
    func (sys *IAMSys) LoadGroup(ctx context.Context, objAPI ObjectLayer, group string) error {
    	if !sys.Initialized() {
    		return errServerNotInitialized
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            then:
            def e = thrown(IllegalArgumentException)
            e.message == 'Cannot define a service of type ServiceRegistry: Service ServiceRegistry with implementation DefaultServiceRegistry'
        }
    
        def failsWhenProviderFactoryMethodProducesAServiceOfTypeServiceRegistry() {
            def registry = new DefaultServiceRegistry()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    // license that can be found in the LICENSE file.
    
    // Package dnsmessage provides a mostly RFC 1035 compliant implementation of
    // DNS message packing and unpacking.
    //
    // The package also supports messages with Extension Mechanisms for DNS
    // (EDNS(0)) as defined in RFC 6891.
    //
    // This implementation is designed to minimize heap allocations and avoid
    // unnecessary packing and unpacking as much as possible.
    package dnsmessage
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

            this.dependencyResolver = dependencyResolver;
            this.rootLocator = rootLocator;
        }
        // ----------------------------------------------------------------------
        // MavenProjectBuilder Implementation
        // ----------------------------------------------------------------------
    
        @Override
        public ProjectBuildingResult build(File pomFile, ProjectBuildingRequest request) throws ProjectBuildingException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    within MLIR, we treat this op as if it fills a buffer with all the results right away,
    and those results are then passed (through the variant tensor result) to
    MakeIterator / IteratorGetNext. Note that the actual TF implementation differs: It
    generates the next element just in time, during IteratorGetNext.
    
    init_extra_args: Additional arguments to pass to 'init'.
    next_extra_args: Additional arguments to pass to 'next'. (Passed after the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  6. src/runtime/malloc.go

    		}
    		// clear min(avail, lump) bytes
    		n := vsize - voff
    		if n > chunkBytes {
    			n = chunkBytes
    		}
    		memclrNoHeapPointers(unsafe.Pointer(voff), n)
    	}
    }
    
    // implementation of new builtin
    // compiler (both frontend and SSA backend) knows the signature
    // of this function.
    func newobject(typ *_type) unsafe.Pointer {
    	return mallocgc(typ.Size_, typ, true)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Multimaps.java

          return multimap.keySet();
        }
    
        @Override
        Iterator<K> elementIterator() {
          throw new AssertionError("should never be called");
        }
      }
    
      /** A skeleton implementation of {@link Multimap#entries()}. */
      abstract static class Entries<K extends @Nullable Object, V extends @Nullable Object>
          extends AbstractCollection<Map.Entry<K, V>> {
        abstract Multimap<K, V> multimap();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Multimaps.java

          return multimap.keySet();
        }
    
        @Override
        Iterator<K> elementIterator() {
          throw new AssertionError("should never be called");
        }
      }
    
      /** A skeleton implementation of {@link Multimap#entries()}. */
      abstract static class Entries<K extends @Nullable Object, V extends @Nullable Object>
          extends AbstractCollection<Map.Entry<K, V>> {
        abstract Multimap<K, V> multimap();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/SetsTest.java

        new EqualsTester().addEqualityGroup(forward, reverse).testEquals();
      }
    
      /**
       * Test that a hash code miscomputed by "input.hashCode() * tooFarValue / 2" is correct under our
       * {@code hashCode} implementation.
       */
      public void testPowerSetHashCode_inputHashCodeTimesTooFarValueIsZero() {
        Set<Object> sumToEighthMaxIntElements =
            newHashSet(objectWithHashCode(1 << 29), objectWithHashCode(0));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context.go

    	// For each cluster and hostname, the full list of active endpoints (including empty list)
    	// must be sent. The shard name is used as a key - current implementation is using the
    	// registry name.
    	EDSUpdate(shard ShardKey, hostname string, namespace string, entry []*IstioEndpoint)
    
    	// EDSCacheUpdate is called when the list of endpoints or labels in a Service is changed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top