Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 383 for flive (0.07 sec)

  1. src/net/tcpsockopt_windows.go

    	// Otherwise, if any of the fields were not provided, just leaving them
    	// zero will knock off any existing values of keep-alive.
    	// Unfortunately, Windows doesn't support retrieving current keep-alive
    	// settings in any form programmatically, which disable us to first retrieve
    	// the current keep-alive settings, then set it without unwanted corruption.
    	switch {
    	case idle < 0 && interval >= 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. test/fixedbugs/bug427.go

    // https://golang.org/issue/3351
    
    package main
    
    // struct with four fields of basic type
    type S struct {a, b, c, d int}
    
    // struct with five fields of basic type
    type T struct {a, b, c, d, e int}
    
    // array with four elements
    type A [4]int
    
    // array with five elements
    type B [5]int
    
    func main() {
    	var i interface{}
    
    	var s1, s2 S
    	i = s1 == s2
    
    	var t1, t2 T
    	i = t1 == t2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 11 14:36:33 UTC 2015
    - 614 bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/testdata/deadcode/ifacemethod4.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that a live type's method is not live even if
    // it matches an interface method, as long as the interface
    // method is not used.
    
    package main
    
    type T int
    
    //go:noinline
    func (T) M() {}
    
    type I interface{ M() }
    
    var p *T
    var pp *I
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 24 14:38:53 UTC 2021
    - 513 bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/testdata/deadcode/typedesc.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that a live variable doesn't bring its type
    // descriptor live.
    
    package main
    
    type T [10]string
    
    var t T
    
    func main() {
    	println(t[8])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 18:04:59 UTC 2020
    - 306 bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/AboutTheStubs.html

    There will be three items in the task list for this dataset.
    
    The stubs also exist at different "levels", where one test might wire stubs into a specific live implementation.
    In the next test that same "live implementation" will be used in a stub version instead.
    
    Not all live services have stubs, but can be added as needed.
    </body>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jul 02 16:47:10 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/file/FileCollection.java

         */
        String getAsPath();
    
        /**
         * <p>Returns a {@code FileCollection} which contains the union of this collection and the given collection. The
         * returned collection is live, and tracks changes to both source collections.</p>
         *
         * <p>You can call this method in your build script using the {@code +} operator.</p>
         *
         * @param collection The other collection. Should not be null.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 15:51:59 UTC 2021
    - 8.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/api_object_versioner_test.go

    			}
    		}
    	}
    }
    
    func TestCompareResourceVersion(t *testing.T) {
    	five := &testresource.TestResource{ObjectMeta: metav1.ObjectMeta{ResourceVersion: "5"}}
    	six := &testresource.TestResource{ObjectMeta: metav1.ObjectMeta{ResourceVersion: "6"}}
    
    	versioner := APIObjectVersioner{}
    
    	if e, a := -1, versioner.CompareResourceVersion(five, six); e != a {
    		t.Errorf("expected %v got %v", e, a)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 11 16:18:15 UTC 2022
    - 3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/cluster_util.h

    // guaranteed to dominate all live-in values. On the other hand, it is still
    // possible that live-out values don't dominate the region. For example:
    //
    // ```
    // %0 = "tf.OpA"()
    // %1 = "tf.OpB"(%0)
    // %2 = "tf.OpC"(%0)
    // ```
    //
    // Assuming `tf.OpA` and `tf.OpC` are clustered together, the region will be
    // inserted right after `tf.OpC`. The live-out `%0`, however, is used by
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 21 22:33:23 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. test/fixedbugs/bug273.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // https://golang.org/issue/589
    
    package main
    
    import "unsafe"
    
    var bug = false
    
    var minus1 = -1
    var five = 5
    var big int64 = 10 | 1<<46
    
    type block [1 << 19]byte
    
    var g1 []block
    
    func shouldfail(f func(), desc string) {
    	defer func() { recover() }()
    	f()
    	if !bug {
    		println("BUG")
    		bug = true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 26 14:06:28 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  10. test/fixedbugs/issue20029.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 20029: make sure we zero at VARKILLs of
    // ambiguously live variables.
    // The ambiguously live variable here is the hiter
    // for the inner range loop.
    
    package main
    
    import "runtime"
    
    func f(m map[int]int) {
    outer:
    	for i := 0; i < 10; i++ {
    		for k := range m {
    			if k == 5 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 20 23:47:43 UTC 2017
    - 583 bytes
    - Viewed (0)
Back to top