Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,317 for nothings (0.34 sec)

  1. src/net/http/http_test.go

    	"ToTitleSpecial": true,
    	"ToUpper":        true,
    	"ToUpperSpecial": true,
    
    	// Functions that use Unicode-aware spaces.
    	"Fields":    true,
    	"TrimSpace": true,
    }
    
    // TestNoUnicodeStrings checks that nothing in net/http uses the Unicode-aware
    // strings and bytes package functions. HTTP is mostly ASCII based, and doing
    // Unicode-aware case folding or space stripping can introduce vulnerabilities.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 18:18:19 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/duplicateLibrary.ir.txt

                        arg0: GET_VAR 'val tmp_0: kotlin.String? [val] declared in <root>.CodeFragment.run' type=kotlin.String? origin=null
                        arg1: CONST Null type=kotlin.Nothing? value=null
                      then: CONST Null type=kotlin.Nothing? value=null
                    BRANCH
                      if: CONST Boolean type=kotlin.Boolean value=true
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Aug 30 06:38:44 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. src/context/context_test.go

    	case x := <-parent.Done():
    		t.Errorf("<-parent.Done() == %v want nothing (it should block)", x)
    	case x := <-cancelChild.Done():
    		t.Errorf("<-cancelChild.Done() == %v want nothing (it should block)", x)
    	case x := <-timerChild.Done():
    		t.Errorf("<-timerChild.Done() == %v want nothing (it should block)", x)
    	case x := <-valueChild.Done():
    		t.Errorf("<-valueChild.Done() == %v want nothing (it should block)", x)
    	default:
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 19:13:01 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. maven-core/src/test/remote-repo/org/apache/maven/its/plugins/maven-it-plugin/0.1/maven-it-plugin-0.1.jar

    maven-it-plugin 0.1 it false true generate-metadata Does nothing. compile false true false false false true process-classes org.apache.maven.plugin.coreit.DMojo java per-lookup once-per-session java Does nothing. false true false false false true generate-sources org.apache.maven.plugin.coreit.AMojo java per-lookup once-per-session models java.lang.String[] false true version java.lang.String false true ${version} generate-test-metadata Does nothing. test false true false false false true process-test-classes...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 23 23:48:02 UTC 2009
    - 13.2K bytes
    - Viewed (0)
  5. src/net/http/fcgi/child.go

    		return false
    	}
    	if strings.HasPrefix(s, "HTTP_") {
    		return false
    	}
    	// Explicitly include FastCGI-specific things.
    	// This list is redundant with the default "return true" below.
    	// Consider this documentation of the sorts of things we expect
    	// to maybe see.
    	switch s {
    	case "REMOTE_USER":
    		return true
    	}
    	// Unknown, so include it to be safe.
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. istioctl/cmd/istioctl_test.go

    	switch fErr.(type) {
    	case istioctlutil.CommandParseError:
    		// do nothing
    	default:
    		t.Errorf("Expected a CommandParseError, but got %q.", fErr)
    	}
    
    	// we should propagate to subcommands
    	rootCmd = GetRootCmd([]string{"analyze", "--unknown-flag"})
    	fErr = rootCmd.Execute()
    
    	switch fErr.(type) {
    	case istioctlutil.CommandParseError:
    		// do nothing
    	default:
    		t.Errorf("Expected a CommandParseError, but got %q.", fErr)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:53:25 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/MavenDependencyDescriptorTest.groovy

    class MavenDependencyDescriptorTest extends ExternalDependencyDescriptorTest {
        final ModuleExclusions moduleExclusions = new ModuleExclusions()
        final ExcludeSpec nothing = moduleExclusions.nothing()
    
        @Override
        MavenDependencyDescriptor create(ModuleComponentSelector selector) {
            return mavenDependencyMetadata(MavenScope.Compile, selector, [])
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/Optimizations.java

                return two;
            }
            if (one instanceof ExcludeNothing) {
                return factory.nothing();
            }
            if (two instanceof ExcludeEverything) {
                return one;
            }
            if (two instanceof ExcludeNothing) {
                return factory.nothing();
            }
            return onMiss.apply(one, two);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. docs/contribute/concurrency.md

    we are unable to deliver its IOException to the application. We would have told the application layer that the write succeeded, but it didn't!
    
    The application-layer can also do blocking reads. If the application asks to read and there's nothing available, we need to hold that thread until either the bytes arrive, the stream is closed, or a timeout elapses. If we get bytes but there's nobody asking for them, we buffer them. We don't consider bytes as delivered for flow control until they're...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 7K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/AbstractMavenLifecycleParticipant.java

         *
         * @param session the Maven session
         * @throws MavenExecutionException in case of issue
         */
        public void afterProjectsRead(MavenSession session) throws MavenExecutionException {
            // do nothing
        }
    
        /**
         * Invoked after MavenSession instance has been created.
         *
         * This callback is intended to allow extensions to inject execution properties,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.9K bytes
    - Viewed (0)
Back to top