Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 383 for elided (0.13 sec)

  1. src/runtime/map.go

    	bucket      uintptr
    	checkBucket uintptr
    }
    
    // bucketShift returns 1<<b, optimized for code generation.
    func bucketShift(b uint8) uintptr {
    	// Masking the shift amount allows overflow checks to be elided.
    	return uintptr(1) << (b & (goarch.PtrSize*8 - 1))
    }
    
    // bucketMask returns 1<<b - 1, optimized for code generation.
    func bucketMask(b uint8) uintptr {
    	return bucketShift(b) - 1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. doc/go_spec.html

    (<code>e</code> or <code>E</code> followed by an optional sign and decimal digits).
    One of the integer part or the fractional part may be elided; one of the decimal point
    or the exponent part may be elided.
    An exponent value exp scales the mantissa (integer and fractional part) by 10<sup>exp</sup>.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

                       [](Value value) { return value == nullptr; }))
        return op->emitOpError("operation has null operand");
    
      // Functions have one less operand compared to op as first operand is elided
      // (`cond` of `tf.If` and `branch_index` of `tf.Case`).
      TypeRangeWithDesc input{op->getOperands().drop_front().getTypes(), "input"};
      TypeRangeWithDesc result{op->getResultTypes(), "result"};
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    //
    //	go doc
    //
    // it prints the package documentation for the package in the current directory.
    // If the package is a command (package main), the exported symbols of the package
    // are elided from the presentation unless the -cmd flag is provided.
    //
    // When run with one argument, the argument is treated as a Go-syntax-like
    // representation of the item to be documented. What the argument selects depends
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. src/os/exec_plan9.go

    	pid    int              // The process's id.
    	status *syscall.Waitmsg // System-dependent status info.
    }
    
    // Pid returns the process id of the exited process.
    func (p *ProcessState) Pid() int {
    	return p.pid
    }
    
    func (p *ProcessState) exited() bool {
    	return p.status.Exited()
    }
    
    func (p *ProcessState) success() bool {
    	return p.status.ExitStatus() == 0
    }
    
    func (p *ProcessState) sys() any {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. src/os/exec_posix.go

    	status syscall.WaitStatus // System-dependent status info.
    	rusage *syscall.Rusage
    }
    
    // Pid returns the process id of the exited process.
    func (p *ProcessState) Pid() int {
    	return p.pid
    }
    
    func (p *ProcessState) exited() bool {
    	return p.status.Exited()
    }
    
    func (p *ProcessState) success() bool {
    	return p.status.ExitStatus() == 0
    }
    
    func (p *ProcessState) sys() any {
    	return p.status
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. .github/workflows/labeler.yml

    name: "Issue Labeler"
    on:
      issues:
        types: [opened, edited, reopened]
      pull_request:
        types: [opened, edited, reopened]
    
    jobs:
      triage:
        runs-on: ubuntu-latest
        name: Label issues and pull requests
        steps:
          - name: check out
            uses: actions/checkout@v4
    
          - name: labeler
            uses: jinzhu/super-labeler-action@develop
            with:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Oct 10 06:50:45 UTC 2023
    - 423 bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers_test.go

    			expected: []metav1.TableRow{{Cells: []interface{}{"service3", "LoadBalancer", "1.4.5.6", "2.3.4.5", "80/TCP,8090/UDP,8000/TCP", "<unknown>"}}},
    		},
    		// Long external IP's list gets elided.
    		{
    			service: api.Service{
    				ObjectMeta: metav1.ObjectMeta{Name: "service4"},
    				Spec: api.ServiceSpec{
    					ClusterIPs: []string{"1.5.6.7"},
    					Type:       "LoadBalancer",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-tooling-builders/src/test/kotlin/org/gradle/kotlin/dsl/tooling/builders/EditorReportsBuilderTest.kt

    import org.hamcrest.MatcherAssert.assertThat
    import org.junit.Test
    
    
    class EditorReportsBuilderTest : TestWithTempFiles() {
    
        @Test
        fun `report file warning on runtime failure in currently edited script on out of range line number`() {
    
            val script = withTwoLinesScript()
    
            val reports = buildEditorReportsFor(
                script,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. src/os/exec.go

    }
    
    // UserTime returns the user CPU time of the exited process and its children.
    func (p *ProcessState) UserTime() time.Duration {
    	return p.userTime()
    }
    
    // SystemTime returns the system CPU time of the exited process and its children.
    func (p *ProcessState) SystemTime() time.Duration {
    	return p.systemTime()
    }
    
    // Exited reports whether the program has exited.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top