Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for GetSet (0.17 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/AbstractPropertyLanguageInterOpIntegrationTest.groovy

                            t.getMessage().set("some other value");
                            t.getNumber().set(1.23);
                            t.getList().set(Arrays.asList(1, 2));
                            t.getSet().set(Arrays.asList(1, 2));
                            Map<Integer, Boolean> map = new LinkedHashMap<>();
                            map.put(1, true);
                            map.put(2, false);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/common/values.go

    	unstructuredList
    	escapedKeyProps []string
    
    	sync.Once // for for lazy load of setOfList since it is only needed if Equals is called
    	set       map[interface{}]struct{}
    }
    
    func (t *unstructuredSetList) getSet() map[interface{}]struct{} {
    	// sets are only allowed to contain scalar elements, which are comparable in go, and can safely be used as
    	// golang map keys
    	t.Do(func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:30:17 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-active-collections/1.0-beta-1/plexus-active-collections-1.0-beta-1.jar

    on); public void clear(); public boolean remove(Object); public boolean removeAll(java.util.Collection); public boolean retainAll(java.util.Collection); protected final org.codehaus.plexus.logging.Logger getLogger(); protected final java.util.Set getSet(); protected final java.util.Set checkedGetSet() throws org.codehaus.plexus.component.repository.exception.ComponentLookupExcep; public final String getRole(); protected final void setRole(String); public final void contextualize(org.codehaus.ple...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 15.6K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-active-collections/1.0-beta-1/plexus-active-collections-1.0-beta-1.jar

    on); public void clear(); public boolean remove(Object); public boolean removeAll(java.util.Collection); public boolean retainAll(java.util.Collection); protected final org.codehaus.plexus.logging.Logger getLogger(); protected final java.util.Set getSet(); protected final java.util.Set checkedGetSet() throws org.codehaus.plexus.component.repository.exception.ComponentLookupExcep; public final String getRole(); protected final void setRole(String); public final void contextualize(org.codehaus.ple...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 15.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/binding/DefaultStructBindingsStoreTest.groovy

            abstract ModelMap<NamedThingInterface> getMap()
        }
    
        @Managed
        static abstract class WritableSetProperty {
            abstract void setSet(ModelSet<NamedThingInterface> set)
            abstract ModelSet<NamedThingInterface> getSet()
        }
    
        def "map cannot be writable"() {
            when: extract WritableMapProperty
            then: def ex = thrown InvalidManagedTypeException
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  6. cmd/auth-handler.go

    		BucketName:      bucketName,
    		ConditionValues: conditions,
    		ObjectName:      objectName,
    		IsOwner:         owner,
    		Claims:          cred.Claims,
    	}) {
    		retSet = true
    	}
    	if byPassSet || retSet {
    		return ErrNone
    	}
    	return ErrAccessDenied
    }
    
    // isPutActionAllowed - check if PUT operation is allowed on the resource, this
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top