Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for divd (0.17 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    	{126, "ENOKEY", "required key not available"},
    	{127, "EKEYEXPIRED", "key has expired"},
    	{128, "EKEYREVOKED", "key has been revoked"},
    	{129, "EKEYREJECTED", "key was rejected by service"},
    	{130, "EOWNERDEAD", "owner died"},
    	{131, "ENOTRECOVERABLE", "state not recoverable"},
    	{132, "ERFKILL", "operation not possible due to RF-kill"},
    	{133, "EHWPOISON", "memory page has hardware error"},
    }
    
    // Signal table
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. pkg/kubelet/pleg/generic_test.go

    	assert.Subsetf(t, allEvents, actual, "actual events should in all events")
    }
    
    func TestDetectingContainerDeaths(t *testing.T) {
    	// Vary the number of relists after the container started and before the
    	// container died to account for the changes in pleg's internal states.
    	testReportMissingContainers(t, 1)
    	testReportMissingPods(t, 1)
    
    	testReportMissingContainers(t, 3)
    	testReportMissingPods(t, 3)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  3. src/syscall/exec_linux.go

    			setgroups = []byte("allow\000")
    		} else {
    			setgroups = []byte("deny\000")
    		}
    		gidmap = formatIDMappings(sys.GidMappings)
    	}
    
    	// Record parent PID so child can test if it has died.
    	ppid, _ := rawSyscallNoError(SYS_GETPID, 0, 0, 0)
    
    	// Guard against side effects of shuffling fds below.
    	// Make sure that nextfd is beyond any currently open files so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    build performance degradation, and how you can avoid it.
    
    TIP: Want faster Gradle Builds? https://gradle.org/training/#build-cache-deep-dive[Register here] for our Build Cache training session to learn how Develocity can speed up builds by up to 90%.
    
    == Inspect your build
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    (Mul(64|32)F ...) => (FMUL(D|S) ...)
    
    (Div(64|32)F ...) => (FDIV(D|S) ...)
    
    (Div64 x y [false])  => (DIV x y)
    (Div64u ...) => (DIVU ...)
    (Div32 x y [false])  => (DIVW x y)
    (Div32u ...) => (DIVUW ...)
    (Div16 x y [false])  => (DIVW  (SignExt16to32 x) (SignExt16to32 y))
    (Div16u x y) => (DIVUW (ZeroExt16to32 x) (ZeroExt16to32 y))
    (Div8 x y)   => (DIVW  (SignExt8to32 x)  (SignExt8to32 y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// For Div16, Div32 and Div64, AuxInt non-zero means that the divisor has been proved to be not -1
    	// or that the dividend is not the most negative value.
    	{name: "Div8", argLength: 2},  // arg0 / arg1, signed
    	{name: "Div8u", argLength: 2}, // arg0 / arg1, unsigned
    	{name: "Div16", argLength: 2, aux: "Bool"},
    	{name: "Div16u", argLength: 2},
    	{name: "Div32", argLength: 2, aux: "Bool"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    Dependency management is a big topic, so we will focus on the basics for Java projects here.
    If you'd like to dive into the detail, check out the <<core_dependency_management.adoc#dependency_management_in_gradle,introduction to dependency management>>.
    
    Specifying the dependencies for your Java project requires just three pieces of information:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  8. src/cmd/link/link_test.go

    	cmd = testenv.Command(t, testenv.GoToolPath(t), "tool", "link", "-importcfg="+importcfgfile, "-o", exe, xObj)
    	out, err = cmd.CombinedOutput()
    	if err == nil {
    		t.Fatalf("link did not fail")
    	}
    	if !bytes.Contains(out, []byte("unlinkable object")) {
    		t.Errorf("did not see expected error message. out:\n%s", out)
    	}
    
    	// It is okay to omit -p for (only) main package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top