Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for mod$ (0.3 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      selected_boxes = tf.gather(boxes, selected_indices)
    This op also supports a Soft-NMS (with Gaussian weighting) mode (c.f.
    Bodla et al, https://arxiv.org/abs/1704.04503) where boxes reduce the score
    of other overlapping boxes instead of directly causing them to be pruned.
    To enable this Soft-NMS mode, set the `soft_nms_sigma` parameter to be
    larger than 0.
      }];
    
      let arguments = (ins
        TFL_FpTensor:$boxes,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: The given query could not be processed. */
        public static final String ERRORS_invalid_query_cannot_process = "{errors.invalid_query_cannot_process}";
    
        /** The key of the message: Invalid mode(expected value is {0}, but it's {1}). */
        public static final String ERRORS_crud_invalid_mode = "{errors.crud_invalid_mode}";
    
        /** The key of the message: Failed to create a new data. */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    	}
    	podInfoOnMount := false
    	if obj.Spec.PodInfoOnMount != nil {
    		podInfoOnMount = *obj.Spec.PodInfoOnMount
    	}
    	allModes := []string{}
    	for _, mode := range obj.Spec.VolumeLifecycleModes {
    		allModes = append(allModes, string(mode))
    	}
    	modes := strings.Join(allModes, ",")
    	if len(modes) == 0 {
    		modes = "<none>"
    	}
    
    	row.Cells = append(row.Cells, obj.Name, attachRequired, podInfoOnMount)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Crawler */
        public static final String LABELS_CRAWLER = "{labels.crawler}";
    
        /** The key of the message: mode */
        public static final String LABELS_CRUD_MODE = "{labels.crudMode}";
    
        /** The key of the message: Max Error Count */
        public static final String LABELS_ERROR_COUNT_MAX = "{labels.errorCountMax}";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  5. cmd/site-replication.go

    		return madmin.ReplicateEditStatus{}, errSRInvalidRequest(fmt.Errorf("a peer cluster, rather than the local cluster (endpoint=%s, deployment-id=%s) needs to be specified while setting a 'sync' replication mode", peer.Endpoint, peer.DeploymentID))
    	}
    
    	for _, v := range sites.Sites {
    		if peer.DeploymentID == v.DeploymentID {
    			found = true
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_node_status_test.go

    }
    
    func TestUpdateExistingNodeStatusTimeout(t *testing.T) {
    	ctx := context.Background()
    	if testing.Short() {
    		t.Skip("skipping test in short mode.")
    	}
    
    	attempts := int64(0)
    	failureCallbacks := int64(0)
    
    	// set up a listener that hangs connections
    	ln, err := net.Listen("tcp", "127.0.0.1:0")
    	assert.NoError(t, err)
    	defer ln.Close()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  7. src/reflect/all_test.go

    	if testing.Short() {
    		t.Skip("skipping malloc count in short mode")
    	}
    	v := ValueOf(S{})
    	if allocs := testing.AllocsPerRun(100, func() { v.Interface() }); allocs > 0 {
    		t.Error("allocs:", allocs)
    	}
    }
    
    func TestAllocsInterfaceSmall(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping malloc count in short mode")
    	}
    	v := ValueOf(int64(0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/asm9.go

    			c.ctxt.Diag("Invalid addressing mode used in index type instruction: %v", p.As)
    		}
    
    		o1 = AOP_RRR(c.opirr(p.As), uint32(p.From.Reg), uint32(p.To.Reg), 0) | (uint32(c.regoff(p.GetFrom3()))&0x7F)<<11
    
    	case 42: /* lswi */
    		if p.From.Type == obj.TYPE_MEM && p.From.Index == 0 && p.From.Offset != 0 {
    			c.ctxt.Diag("Invalid addressing mode used in index type instruction: %v", p.As)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  9. api/maven-api-model/src/main/mdo/maven.mdo

              <name>notifiers</name>
              <version>4.0.0+</version>
              <description>Configuration for notifying developers/users when a build is unsuccessful,
                including user information and notification mode.</description>
              <association>
                <multiplicity>*</multiplicity>
                <type>Notifier</type>
              </association>
            </field>
          </fields>
        </class>
        <class>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

    };
    
    // A helper function for ConvertMaxPoolOp and ConvertAvgPoolOp. Returns true
    // if the given ReduceWindowOp is a spatial pooling without dilation. If returns
    // true, also outputs the window strides and the TF padding mode ("VALID" or
    // "SAME").
    bool IsSpatialPoolingWithoutDilation(
        mhlo::ReduceWindowOp rw, llvm::SmallVectorImpl<int64_t>* window_strides,
        std::string* padding_mode, std::string* data_format) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
Back to top