Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 134 for BOGUS (0.3 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/normalization/DefaultModelNormalizer.java

             * the way 2.x works. When we're in strict mode, the removal of duplicates just saves other merging steps from
             * aftereffects and bogus error messages.
             */
            List<Dependency> dependencies = model.getDependencies();
            Map<String, Dependency> normalized = new LinkedHashMap<>(dependencies.size() * 2);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/WindowsRegistryVersionLocatorTest.groovy

            when:
            metadata = locator.getVisualStudioInstalls()
    
            then:
            0 * windowsRegistry._
    
            and:
            metadata.size() == 3
        }
    
        def "ignores bogus versions in registry"() {
            given:
            def dir1 = tmpDir.createDir("Visual Studio 14.0")
            def dir2 = tmpDir.createDir("Visual Studio 12.0")
            def dir3 = tmpDir.createDir("Visual Studio 11.0")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/FilesCreateTempDirTest.java

         * than relying on the one from the system property.
         *
         * - Under Java 8, createTempDir() fails because it falls back to the bogus username from the
         * system property.
         */
    
        String save = System.getProperty("user.name");
        System.setProperty("user.name", "-this-is-definitely-not-the-username-we-are-running-as//?");
        try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 06 17:11:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/FilesCreateTempDirTest.java

         * than relying on the one from the system property.
         *
         * - Under Java 8, createTempDir() fails because it falls back to the bogus username from the
         * system property.
         */
    
        String save = System.getProperty("user.name");
        System.setProperty("user.name", "-this-is-definitely-not-the-username-we-are-running-as//?");
        try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 06 17:11:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/doc.go

    //
    // To enable printf checking on a function that is not found by this
    // analyzer's heuristics (for example, because control is obscured by
    // dynamic method calls), insert a bogus call:
    //
    //	func MyPrintf(format string, args ...any) {
    //		if false {
    //			_ = fmt.Sprintf(format, args...) // enable printf checking
    //		}
    //		...
    //	}
    //
    // # Specifying printf wrappers by flag
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/util/hosts_test.go

    	// short name
    	g.Expect(GetResourceNameFromHost("default", "foo")).To(Equal(resource.NewFullName("default", "foo")))
    	// bogus FQDN (gets treated like a short name)
    	g.Expect(GetResourceNameFromHost("default", "foo.svc.cluster.local")).To(Equal(resource.NewFullName("default", "foo.svc.cluster.local")))
    }
    
    func TestGetScopedFqdnHostname(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. src/net/http/response_test.go

    			TransferEncoding: nil,
    			Close:            true,
    			ContentLength:    256,
    		},
    
    		"",
    	},
    
    	// Issue 12785: HTTP/1.0 response with bogus (to be ignored) Transfer-Encoding.
    	// Without a Content-Length.
    	{
    		"HTTP/1.0 200 OK\r\n" +
    			"Transfer-Encoding: bogus\r\n" +
    			"\r\n" +
    			"Body here\n",
    
    		Response{
    			Status:        "200 OK",
    			StatusCode:    200,
    			Proto:         "HTTP/1.0",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 19:01:29 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftDepsHandler.java

                return yaml.loadAs(fileInputStream, SwiftDeps.class);
            });
        }
    
        private void adjustTimestamps(SwiftDeps swiftDeps, Collection<File> changedSources) {
            // Update any previously known files with a bogus timestamp to force a rebuild
    
            for (File changedSource : changedSources) {
                if (swiftDeps.inputs.containsKey(changedSource.getAbsolutePath())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/upgrade/common_test.go

    				kubeConfigPath: fullPath,
    			},
    			expectedErr:        "ERROR CoreDNSUnsupportedPlugins",
    			expectedErrNonRoot: "user is not running as", // user is not running as (root || administrator)
    		},
    		{
    			name: "Bogus preflight check specify all with individual check",
    			flags: applyPlanFlags{
    				ignorePreflightErrors: []string{"bogusvalue", "all"},
    				kubeConfigPath:        fullPath,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelNormalizer.java

             * the way 2.x works. When we're in strict mode, the removal of duplicates just saves other merging steps from
             * aftereffects and bogus error messages.
             */
            List<Dependency> dependencies = model.getDependencies();
            Map<String, Dependency> normalized = new LinkedHashMap<>(dependencies.size() * 2);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top