Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 556 for familyOf (0.35 sec)

  1. pkg/registry/core/service/storage/alloc.go

    		if !ok {
    			// Maybe the cluster was previously configured for dual-stack,
    			// then switched to single-stack?
    			klog.InfoS("Not releasing ClusterIP because related family is not enabled", "clusterIP", ip, "family", family)
    			continue
    		}
    
    		parsedIP := netutils.ParseIPSloppy(ip)
    		if parsedIP == nil {
    			return released, errors.NewInternalError(fmt.Errorf("failed to parse service IP %q", ip))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/java/fixtures/groovy/src/main/java/com/acme/Family.java

    package com.acme;
    
    import java.util.List;
    import java.util.Arrays;
    
    public class Family {
        private final List<Person> members;
    
        public Family(Person... members) {
            this.members = Arrays.asList(members);
        }
    
        public List<Person> getMembers() {
            return members;
        }
    
        public int size() {
            return members.size();
        }
    
        public boolean contains(Person person) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 601 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java/fixtures/kotlin/src/main/java/com/acme/Family.java

    package com.acme;
    
    import java.util.List;
    import java.util.Arrays;
    
    public class Family {
        private final List<Person> members;
    
        public Family(Person... members) {
            this.members = Arrays.asList(members);
        }
    
        public List<Person> getMembers() {
            return members;
        }
    
        public int size() {
            return members.size();
        }
    
        public boolean contains(Person person) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 601 bytes
    - Viewed (0)
  4. pkg/registry/core/service/storage/storage_test.go

    	}
    
    	for i, fam := range after.Spec.IPFamilies {
    		if want, got := fam, familyOf(after.Spec.ClusterIPs[i]); want != got {
    			t.Errorf("%s: clusterIP is the wrong IP family: want %s, got %s", callName(before, after), want, got)
    		}
    	}
    
    	if after.Spec.IPFamilyPolicy == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/java/fixtures/groovy/src/test/java/com/acme/FamilyTest.java

        @Test
        public void testFamily() {
            Family family = new Family(
                homer(),
                marge(),
                bart(),
                named("elisabeth marie"),
                of(ImmutablePair.of("Margaret Eve", "Simpson"))
            );
            System.out.println("family = " + family);
            System.out.println("maggie() = " + maggie());
            assertEquals(5, family.size());
            assertTrue(family.contains(lisa()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 683 bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/NestedManagedTypeIntegrationTest.groovy

                        assert platform.operatingSystem.family != null
                        assert platform.operatingSystem.family.name == null
    
                        platform.displayName = "Microsoft Windows 8.1"
                        platform.operatingSystem.version = "8.1"
                        platform.operatingSystem.family.name = "windows"
    
                        assert platform.displayName == "Microsoft Windows 8.1"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/utils/Os.java

         * given OS family.
         *
         * @param family the family to check for
         * @return true if the OS matches
         *
         */
        public static boolean isFamily(String family) {
            return isFamily(family, OS_NAME);
        }
    
        /**
         * Determines if the OS on which Maven is executing matches the
         * given OS family derived from the given OS name
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. pkg/registry/core/service/ipallocator/controller/repair.go

    		}
    
    		storedByFamily[family] = stored
    	}
    
    	rebuiltByFamily := make(map[v1.IPFamily]*ipallocator.Range)
    
    	for family, network := range c.networkByFamily {
    		rebuilt, err := ipallocator.NewInMemory(network)
    		if err != nil {
    			return fmt.Errorf("unable to create CIDR range for family %v: %v", family, err)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  9. pkg/ctrlz/assets/static/css/fonts.css

    /* cyrillic-ext */
    @font-face {
      font-family: 'Roboto';
      font-style: italic;
      font-weight: 100;
      src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url(https://fonts.gstatic.com/s/roboto/v19/KFOiCnqEu92Fr1Mu51QrEz0dL-vwnYh2eg.woff2) format('woff2');
      unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
    }
    /* cyrillic */
    @font-face {
      font-family: 'Roboto';
      font-style: italic;
      font-weight: 100;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/java/fixtures/kotlin/src/test/java/com/acme/FamilyTest.java

        @Test
        public void testFamily() {
            Family family = new Family(
                homer(),
                marge(),
                bart(),
                named("elisabeth marie"),
                of(ImmutablePair.of("Margaret Eve", "Simpson"))
            );
            System.out.println("family = " + family);
            System.out.println("maggie() = " + maggie());
            assertEquals(5, family.size());
            assertTrue(family.contains(lisa()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 683 bytes
    - Viewed (0)
Back to top