Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for useless3 (0.33 sec)

  1. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        val uselessSocketFactory: SocketFactory =
          object : SocketFactory() {
            override fun createSocket(): Socket {
              throw IllegalArgumentException("useless")
            }
    
            override fun createSocket(
              host: InetAddress,
              port: Int,
            ): Socket? = null
    
            override fun createSocket(
              address: InetAddress,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/exec.go

    	} else {
    		cmd = b.GccCmd(p.Dir, objdir)
    	}
    
    	cmdargs := []any{cmd, "-o", outfile, objs, flags}
    	out, err := sh.runOut(base.Cwd(), b.cCompilerEnv(), cmdargs...)
    
    	if len(out) > 0 {
    		// Filter out useless linker warnings caused by bugs outside Go.
    		// See also cmd/link/internal/ld's hostlink method.
    		var save [][]byte
    		var skipLines int
    		for _, line := range bytes.SplitAfter(out, []byte("\n")) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/popper.min.js.map

    options.boundariesElement || getOffsetParent(data.instance.popper);\n\n  // If offsetParent is the reference element, we really want to\n  // go one step up and use the next offsetParent as reference to\n  // avoid to make this modifier completely useless and look like broken\n  if (data.instance.reference === boundariesElement) {\n    boundariesElement = getOffsetParent(boundariesElement);\n  }\n\n  // NOTE: DOM access here\n  // resets the popper's position so that the document size can be calculated...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
  4. src/database/sql/sql_test.go

    	// the blocked goroutine and then fills up the idle queue.
    	for _, v := range rows {
    		v.Close()
    	}
    	// At this point we give the new connection to DB. This connection is
    	// now useless, since the idle queue is full and there are no pending
    	// requests. DB should deal with this situation without leaking the
    	// connection.
    	drv.waitCh <- struct{}{}
    	wg.Wait()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    				}
    				if strings.Contains(got, "Too-Late") {
    					return errors.New("don't want too-late header")
    				}
    				return nil
    			},
    		},
    		{
    			name: "write then useless Header mutation",
    			handler: func(rw ResponseWriter, r *Request) {
    				rw.Write([]byte("hello world"))
    				rw.Header().Set("Too-Late", "Write already wrote headers")
    			},
    			check: func(got, logs string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    the Prism and Lens, so far as they may make any irregular Refraction, must be covered with a black Paper glewed on. And all the Light of the Sun's Beam let into the Chamber, which is useless and unprofitable to the Experiment, ought to be intercepted with black Paper, or other black Obstacles. For otherwise the useless Light being reflected every way in the Chamber, will mix with the oblong Spectrum, and help to disturb it. In trying these Things, so much diligence is not altogether necessary, but...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
Back to top