Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 107 for nonZero (0.52 sec)

  1. test/retjmp.dir/a.s

    TEXT	·f(SB), 4, $8-0
    	CALL	·f1(SB)
    	RET	·f2(SB)
    	CALL	·unreachable(SB)
    
    TEXT	·leaf(SB), 4, $0-0
    	RET	·f3(SB)
    	JMP	·unreachable(SB)
    
    TEXT	·leaf2(SB), 4, $32-0 // nonzero frame size
    	RET	·f4(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 22:42:08 UTC 2021
    - 385 bytes
    - Viewed (0)
  2. test/escape3.go

    	check1(0)
    	check1(1)
    	check1(2)
    }
    
    type T1 struct {
    	X, Y, Z int
    }
    
    func f() int {
    	return 1
    }
    
    func check1(pass int) T1 {
    	v := []T1{{X: f(), Z: f()}}
    	if v[0].Y != 0 {
    		panic("nonzero init")
    	}
    	v[0].Y = pass
    	return v[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 524 bytes
    - Viewed (0)
  3. src/net/interface_linux.go

    				}
    			case IPv6len:
    				switch ifim.Type {
    				case sysARPHardwareIPv6IPv6, sysARPHardwareGREIPv6:
    					continue
    				}
    			}
    			var nonzero bool
    			for _, b := range a.Value {
    				if b != 0 {
    					nonzero = true
    					break
    				}
    			}
    			if nonzero {
    				ifi.HardwareAddr = a.Value[:]
    			}
    		case syscall.IFLA_IFNAME:
    			ifi.Name = string(a.Value[:len(a.Value)-1])
    		case syscall.IFLA_MTU:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 27 05:42:03 UTC 2022
    - 7K bytes
    - Viewed (0)
  4. src/net/hook.go

    	) ([]IPAddr, error) {
    		return fn(ctx, network, host)
    	}
    	testPreHookSetKeepAlive = func(*netFD) {}
    	testHookSetKeepAlive    = func(KeepAliveConfig) {}
    
    	// testHookStepTime sleeps until time has moved forward by a nonzero amount.
    	// This helps to avoid flakes in timeout tests by ensuring that an implausibly
    	// short deadline (such as 1ns in the future) is always expired by the time
    	// a relevant system call occurs.
    	testHookStepTime = func() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 934 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/kotlinDsl/androidSingleBuild/kotlin/src/main/res/drawable-v24/ic_launcher_foreground.xml

                        android:offset="1.0" />
                </gradient>
            </aapt:attr>
        </path>
        <path
            android:fillColor="#FFFFFF"
            android:fillType="nonZero"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ComparisonChain.java

     *       .compare(this.anEnum, that.anEnum, Ordering.natural().nullsLast())
     *       .result();
     * }
     * }</pre>
     *
     * <p>The value of this expression will have the same sign as the <i>first nonzero</i> comparison
     * result in the chain, or will be zero if every comparison result was zero.
     *
     * <p><b>Note:</b> {@code ComparisonChain} instances are <b>immutable</b>. For this utility to work
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 24 17:47:51 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  7. src/cmd/go/go_unix_test.go

    	// it should finish up and exit with a nonzero status,
    	// not have to be killed with SIGKILL.
    	cancel()
    
    	io.Copy(stdout, r)
    	if stdout.Len() > 0 {
    		t.Logf("stdout:\n%s", stdout)
    	}
    	err = cmd.Wait()
    
    	ee, _ := err.(*exec.ExitError)
    	if ee == nil {
    		t.Fatalf("unexpectedly finished with nonzero status")
    	}
    	if len(ee.Stderr) > 0 {
    		t.Logf("stderr:\n%s", ee.Stderr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 19 16:17:55 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. src/cmd/covdata/tool_test.go

    			re:      regexp.MustCompile(`^0: L23:C23 -- L24:C12 NS=1 = (\d+)$`),
    			nonzero: true,
    		},
    		{
    			tag:     "third function unit 1",
    			re:      regexp.MustCompile(`^1: L27:C2 -- L28:C10 NS=2 = (\d+)$`),
    			nonzero: true,
    		},
    		{
    			tag:     "third function unit 2",
    			re:      regexp.MustCompile(`^2: L24:C12 -- L26:C3 NS=1 = (\d+)$`),
    			nonzero: true,
    		},
    	}
    	flags := []string{"-live", "-pkg=" + mainPkgPath}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/templates/java-android-application/src/main/res/drawable-v24/ic_launcher_foreground.xml

                        android:offset="1.0" />
                </gradient>
            </aapt:attr>
        </path>
        <path
            android:fillColor="#FFFFFF"
            android:fillType="nonZero"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/app/src/main/res/drawable-v24/ic_launcher_foreground.xml

                        android:offset="1.0" />
                </gradient>
            </aapt:attr>
        </path>
        <path
            android:fillColor="#FFFFFF"
            android:fillType="nonZero"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top