Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,376 for whatev (0.13 sec)

  1. test/typeswitch1.go

    	case uint64:
    		return fmt.Sprint("unsigned64 ", xx.(uint64))
    	case nil:
    		return fmt.Sprint("nil ", xx)
    	}
    	panic("not reached")
    }
    
    func check(x interface{}, s string) {
    	w := whatis(x)
    	if w != s {
    		fmt.Println("whatis", x, "=>", w, "!=", s)
    		panic("fail")
    	}
    
    	w = whatis1(x)
    	if w != s {
    		fmt.Println("whatis1", x, "=>", w, "!=", s)
    		panic("fail")
    	}
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:48:19 UTC 2012
    - 1.6K bytes
    - Viewed (0)
  2. src/internal/trace/trace_test.go

    				case trace.EventLog:
    					log := ev.Log()
    					match = log.Task == wantEv.task && log.Category == wantEv.args[0] && log.Message == wantEv.args[1]
    				}
    				if match {
    					want[i] = want[len(want)-1]
    					want = want[:len(want)-1]
    					break
    				}
    			}
    		}
    		if len(want) != 0 {
    			for _, ev := range want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    gazing up into the roof of the court.
    
      `What do you know about this business?' the King said to
    Alice.
    
      `Nothing,' said Alice.
    
      `Nothing WHATEVER?' persisted the King.
    
      `Nothing whatever,' said Alice.
    
      `That's very important,' the King said, turning to the jury.
    They were just beginning to write this down on their slates, when
    the White Rabbit interrupted:  `UNimportant, your Majesty means,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_illumos.go

    	iovecs := bytes2iovec(iovs)
    	n, err = preadv(fd, iovecs, off)
    	return n, err
    }
    
    //sys	writev(fd int, iovs []Iovec) (n int, err error)
    
    func Writev(fd int, iovs [][]byte) (n int, err error) {
    	iovecs := bytes2iovec(iovs)
    	n, err = writev(fd, iovecs)
    	return n, err
    }
    
    //sys	pwritev(fd int, iovs []Iovec, off int64) (n int, err error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcherTest.groovy

            where:
            input                    | className                 | methodName            | match
            ["FooTest"]              | "FooTest"                 | "whatever"            | true
            ["FooTest"]              | "fooTest"                 | "whatever"            | false
    
            ["com.foo.FooTest"]      | "com.foo.FooTest"         | "x"                   | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. src/hash/crc32/crc32_amd64.go

    		// CRC(I, ABC) = CRC(CRC(I, AB), O) xor CRC(0, C)
    		crc = castagnoliShift(castagnoliSSE42TableK1, crcAB) ^ crcC
    		p = p[castagnoliK1*3:]
    	}
    
    	// Use the simple implementation for what's left.
    	crc = castagnoliSSE42(crc, p)
    	return ^crc
    }
    
    func archAvailableIEEE() bool {
    	return cpu.X86.HasPCLMULQDQ && cpu.X86.HasSSE41
    }
    
    var archIeeeTable8 *slicing8Table
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.css

    }
    .submenu {
      display: none;
      z-index: 1;
      margin-top: -4px;
      min-width: 10em;
      position: absolute;
      left: 0px;
      background-color: white;
      box-shadow: 0 1px 5px rgba(0,0,0,.3);
      font-size: 100%;
      text-transform: none;
      white-space: nowrap;
    }
    .menu-item, .submenu {
      user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      -webkit-user-select: none;
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/config/v1alpha1/defaults.go

    // values, but they may be subject to change between API versions. This function
    // is intentionally not registered in the scheme as a "normal" `SetDefaults_Foo`
    // function to allow consumers of this type to set whatever defaults for their
    // embedded configs. Forcing consumers to use these defaults would be problematic
    // as defaulting in the scheme is done as part of the conversion, and there would
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/FinalizePropertiesTaskExecuter.java

    import org.gradle.api.internal.tasks.properties.TaskProperties;
    
    /**
     * Notifies the task properties of the start and completion of task execution, so they may finalize and cache whatever state is required to efficiently fingerprint inputs and outputs, apply validation or whatever.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 16 18:04:59 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  10. src/math/big/natdiv.go

    		// and in long division, because we know that q̂ is wrong by at most one.
    		qhatv := tmp.make(3 * n)
    		clear(qhatv)
    		qhatv = qhatv.mul(qhat, v[:s])
    		for i := 0; i < 2; i++ {
    			e := qhatv.cmp(uu.norm())
    			if e <= 0 {
    				break
    			}
    			subVW(qhat, qhat, 1)
    			c := subVV(qhatv[:s], qhatv[:s], v[:s])
    			if len(qhatv) > s {
    				subVW(qhatv[s:], qhatv[s:], c)
    			}
    			addAt(uu[s:], v[s:], 0)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
Back to top