Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for combinations (0.22 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    }
    
    // optab contains an array to be sliced of accepted operand combinations for an
    // instruction. Unused arguments and fields are not explicitly enumerated, and
    // should not be listed for clarity. Unused arguments and values should always
    // assume the default value for the given type.
    //
    // optab does not list every valid ppc64 opcode, it enumerates representative
    // operand combinations for a class of instruction.  The variable oprange indexes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (MOVHreg (SBFX [bfc] x)) && bfc.getARM64BFwidth() <= 16 => (SBFX [bfc] x)
    (MOVBreg (SBFX [bfc] x)) && bfc.getARM64BFwidth() <=  8 => (SBFX [bfc] x)
    
    // sbfiz/sbfx combinations: merge shifts into bitfield ops
    (SRAconst [sc] (SBFIZ [bfc] x)) && sc < bfc.getARM64BFlsb()
    	=> (SBFIZ [armBFAuxInt(bfc.getARM64BFlsb()-sc, bfc.getARM64BFwidth())] x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/ClosingFuture.java

     * automatic-closing approach described above is safer.
     *
     * @param <V> the type of the value of this step
     * @since 30.0
     */
    // TODO(dpb): Consider reusing one CloseableList for the entire pipeline, modulo combinations.
    @DoNotMock("Use ClosingFuture.from(Futures.immediate*Future)")
    @J2ktIncompatible
    @ElementTypesAreNonnullByDefault
    // TODO(dpb): GWT compatibility.
    public final class ClosingFuture<V extends @Nullable Object> {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     * automatic-closing approach described above is safer.
     *
     * @param <V> the type of the value of this step
     * @since 30.0
     */
    // TODO(dpb): Consider reusing one CloseableList for the entire pipeline, modulo combinations.
    @DoNotMock("Use ClosingFuture.from(Futures.immediate*Future)")
    @J2ktIncompatible
    @ElementTypesAreNonnullByDefault
    // TODO(dpb): GWT compatibility.
    public final class ClosingFuture<V extends @Nullable Object> {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    		}
    	}
    	metrics.OrphanedRuntimePodTotal.Add(float64(orphanCount))
    
    	// Now that we have recorded any terminating pods, and added new pods that should be running,
    	// record a summary here. Not all possible combinations of PodWorkerSync values are valid.
    	counts := make(map[PodWorkerSync]int)
    	for _, sync := range workingPods {
    		counts[sync]++
    	}
    	for validSync, configState := range map[PodWorkerSync]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier_test.go

    			destIP:   svcLBIP2,
    			destPort: svcPort,
    			output:   fmt.Sprintf("%s:%d", epIP, svcPort),
    			masq:     true,
    		},
    	})
    }
    
    // TestNodePorts tests NodePort services under various combinations of the
    // --nodeport-addresses flags.
    func TestNodePorts(t *testing.T) {
    	testCases := []struct {
    		name string
    
    		family            v1.IPFamily
    		nodePortAddresses []string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/asm6.go

    	if pre := prefixof(ctxt, &p.From); pre != 0 {
    		ab.Put1(byte(pre))
    	}
    	if pre := prefixof(ctxt, &p.To); pre != 0 {
    		ab.Put1(byte(pre))
    	}
    
    	// Checks to warn about instruction/arguments combinations that
    	// will unconditionally trigger illegal instruction trap (#UD).
    	switch p.As {
    	case AVGATHERDPD,
    		AVGATHERQPD,
    		AVGATHERDPS,
    		AVGATHERQPS,
    		AVPGATHERDD,
    		AVPGATHERQD,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/asm7.go

    // For example, the format of TLBI is: TLBI <tlbi_op>{, <Xt>}.
    // It's equivalent to: SYS #<op1>, C8, <Cm>, #<op2>{, <Xt>}.
    // The field hasOperand2 indicates whether Xt is required. It helps to check
    // some combinations that may be undefined, such as TLBI VMALLE1IS, R0.
    var sysInstFields = map[SpecialOperand]struct {
    	op1         uint8
    	cn          uint8
    	cm          uint8
    	op2         uint8
    	hasOperand2 bool
    }{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * <tt>shareAccess</tt> parameter controls what permissions other
     * clients have when trying to access the same file while this instance
     * is still open. This value is either <tt>FILE_NO_SHARE</tt> or any
     * combination of <tt>FILE_SHARE_READ</tt>, <tt>FILE_SHARE_WRITE</tt>,
     * and <tt>FILE_SHARE_DELETE</tt> logically OR'd together.
     *
     * @param   url A URL string
     * @param   auth The credentials the client should use for authentication
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      }
      PruneForReverseReachability(
          host_graph->get(),
          std::unordered_set<const Node*>{(*host_graph)->sink_node()});
    
      // Postprocess edges between different outside compilations.
      TF_RETURN_IF_ERROR(PostprocessEdgesBetweenOutsideCompilations(
          host_graph->get(), outside_compilation_attr_name));
    
      // Postprocess lifted arg nodes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
Back to top