Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 761 for proper (0.12 sec)

  1. src/net/udpsock_test.go

    			t.Fatalf("got %v; expected a proper address with zone identifier", la)
    		}
    
    		c2, err := Dial(tt.network, ls.PacketConn.LocalAddr().String())
    		if err != nil {
    			t.Fatal(err)
    		}
    		defer c2.Close()
    		if la, ok := c2.LocalAddr().(*UDPAddr); !ok || !tt.nameLookup && la.Zone == "" {
    			t.Fatalf("got %v; expected a proper address with zone identifier", la)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-base/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Contains a basic JVM plugin used to compile, test, and assemble Java source; often applied by other JVM plugins (though named java-base, jvm-base would be a more proper name)."
    
    errorprone {
        disabledChecks.addAll(
            "UnusedMethod", // 1 occurrences
        )
    }
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(projects.serviceProvider)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-settings/test-pom-and-settings-interpolation/pom.xml

      <description>
        Test that POM interpolation uses the property values from the dominant profile source (POM vs. settings.xml).
        This boils down to the proper order of profile injection and interpolation, i.e.
        interpolate after profiles from all sources are injected.
      </description>
    
      <properties>
        <!-- collect the effective property values as derived by interpolation -->
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 11 18:17:16 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/java/modules-with-transform/README.adoc

    It uses `commons-cli` (not a module) to parse the command line arguments, which can contain a JSON String, and `gson` (a proper module) to parse the JSON string.
    It also utilises `commons-lang3` (an automatic module) and `commons-beanutils` (not a module) which brings in some additional dependencies that are also not modules.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/BuildScriptClassPathIntegrationTest.groovy

            buildFile.text = buildFile.text.replaceAll('Original bar', 'New bar')
            succeeds 'foo'
    
            then:
            outputDoesNotContain('Original bar')
        }
    
        def 'buildscript classpath has proper usage attribute'() {
            buildFile << """
    buildscript {
        configurations.classpath {
            def value = attributes.getAttribute(Usage.USAGE_ATTRIBUTE)
            assert value.name == Usage.JAVA_RUNTIME
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 20 11:48:31 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/AbstractCollectionTester.java

        return collection;
      }
    
      /** @see AbstractContainerTester#resetContainer() */
      protected void resetCollection() {
        resetContainer();
      }
    
      /** @return an array of the proper size with {@code null} inserted into the middle element. */
      protected E[] createArrayWithNullElement() {
        E[] array = createSamplesArray();
        array[getNullLocation()] = null;
        return array;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/collect/testing/AbstractCollectionTester.java

        return collection;
      }
    
      /** @see AbstractContainerTester#resetContainer() */
      protected void resetCollection() {
        resetContainer();
      }
    
      /** @return an array of the proper size with {@code null} inserted into the middle element. */
      protected E[] createArrayWithNullElement() {
        E[] array = createSamplesArray();
        array[getNullLocation()] = null;
        return array;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/hash/Funnel.java

     *
     * <p>Note that serialization of {@linkplain BloomFilter bloom filters} requires the proper
     * serialization of funnels. When possible, it is recommended that funnels be implemented as a
     * single-element enum to maintain serialization guarantees. See Effective Java (2nd Edition), Item
     * 3: "Enforce the singleton property with a private constructor or an enum type". For example:
     *
     * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  9. internal/mountinfo/mountinfo_windows.go

    	}
    
    	switch windows.GetDriveType(&wvolume[0]) {
    	case windows.DRIVE_FIXED, windows.DRIVE_REMOVABLE, windows.DRIVE_REMOTE, windows.DRIVE_RAMDISK:
    		// Recognize "fixed", "removable", "remote" and "ramdisk" drives as proper drives
    		// which can be treated as an actual mount-point, rest can be ignored.
    		// https://docs.microsoft.com/en-us/windows/desktop/api/fileapi/nf-fileapi-getdrivetypew
    		mountPointCache.Store(path, true)
    		return true
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 19 01:35:22 UTC 2021
    - 2K bytes
    - Viewed (0)
  10. src/compress/testdata/gettysburg.txt

    resting place for those who here gave their lives that that
    nation might live.  It is altogether fitting and proper that
    we should do this.
      But, in a larger sense, we can not dedicate - we can not
    consecrate - we can not hallow - this ground.
      The brave men, living and dead, who struggled here, have
    consecrated it, far above our poor power to add or detract.
    The world will little note, nor long remember what we say here,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 29 15:46:44 UTC 2015
    - 1.5K bytes
    - Viewed (0)
Back to top