Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for whatis1 (0.23 sec)

  1. CONTRIBUTING.md

    For any non-trivial change, we need to be able to answer these questions:
    
    * Why is this change done? What's the use case?
    * For user facing features, what will the API look like?
    * What test cases should it have? What could go wrong?
    * How will it roughly be implemented? We'll happily provide code pointers to save you time.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/DuplexTest.kt

        assumeNotWindows()
        enableProtocol(Protocol.HTTP_2)
        val body =
          MockStreamHandler()
            .exhaustResponse()
            .receiveRequest("hey\n")
            .receiveRequest("whats going on\n")
            .exhaustRequest()
        server.enqueue(
          MockResponse.Builder()
            .clearHeaders()
            .addHeader("h1", "v1")
            .addHeader("h2", "v2")
            .streamHandler(body)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java

            }
    
            injectPluginDeclarationFromProject(plugin, project);
    
            // If there is no version to be found then we need to look in the repository metadata for
            // this plugin and see what's specified as the latest release.
            //
            if (plugin.getVersion() == null) {
                resolvePluginVersion(plugin, session, project);
            }
    
            return pluginManager.getMojoDescriptor(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. src/strconv/decimal.go

    func shouldRoundUp(a *decimal, nd int) bool {
    	if nd < 0 || nd >= a.nd {
    		return false
    	}
    	if a.d[nd] == '5' && nd+1 == a.nd { // exactly halfway - round to even
    		// if we truncated, a little higher than what's recorded - always round up
    		if a.trunc {
    			return true
    		}
    		return nd > 0 && (a.d[nd-1]-'0')%2 != 0
    	}
    	// not halfway - digit tells all
    	return a.d[nd] >= '5'
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 15 19:41:25 UTC 2017
    - 11K bytes
    - Viewed (0)
  5. src/encoding/gob/debug.go

    	n := int(t)
    	if n > len(tabs) {
    		n = len(tabs)
    	}
    	return tabs[0:n]
    }
    
    func (t tab) print() {
    	fmt.Fprint(os.Stderr, t)
    }
    
    // A peekReader wraps an io.Reader, allowing one to peek ahead to see
    // what's coming without stealing the data from the client of the Reader.
    type peekReader struct {
    	r    io.Reader
    	data []byte // read-ahead data
    }
    
    // newPeekReader returns a peekReader that wraps r.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 09:34:41 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/create.go

    	if manager != "" {
    		return manager
    	}
    	return prefixFromUserAgent(userAgent)
    }
    
    // prefixFromUserAgent takes the characters preceding the first /, quote
    // unprintable character and then trim what's beyond the
    // FieldManagerMaxLength limit.
    func prefixFromUserAgent(u string) string {
    	m := strings.Split(u, "/")[0]
    	buf := bytes.NewBuffer(nil)
    	for _, r := range m {
    		// Ignore non-printable characters
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:19:46 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/BuildCacheClientModule.java

                buildOperationListener
            );
        }
    
        @Provides
        CurrentBuildOperationRef createCurrentBuildOperationRef() {
            return new CurrentBuildOperationRef();
        }
    
        // TODO What's the difference between BuildOperationExecutionListener
        //      (which seems to be called) and BuildOperationListener (which
        //      seems not to be called)?
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 07:11:58 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/ApiGroovyCompiler.java

                // All java files are just passed to the compile method of the JavaCompiler and aren't processed internally by the Groovy Compiler.
                // Since we're maintaining our own list of Java files independent of what's passed by the Groovy compiler, adding a non-existent java file
                // to the sources won't cause any issues.
                unit.addSources(new File[]{new File("ForceStubGeneration.java")});
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessorTest.groovy

        void "executes class with broken constructor"() {
            when: process(ATestNGClassWithBrokenConstructor)
    
            then:
            //below needs to revisited when we attempt to fix the problem
            //e.g. decide what's the behavior we want in this scenario
            1 * processor.started({ it.id == 1} , _)
            1 * processor.started({ it.name == 'initializationError' && it.className == ATestNGClassWithBrokenConstructor.name }, _)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. pkg/log/config.go

    	buf[24] = byte((micros/10)%10) + '0'
    	buf[25] = byte((micros)%10) + '0'
    	buf[26] = 'Z'
    
    	enc.AppendString(string(buf))
    }
    
    func updateScopes(options *Options) error {
    	// snapshot what's there
    	allScopes := Scopes()
    
    	// Join defaultOutputLevels and outputLevels
    	levels := options.defaultOutputLevels
    	if levels == "" {
    		levels = options.outputLevels
    	} else if options.outputLevels != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top