Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 238 for END (0.05 sec)

  1. android/guava/src/com/google/common/base/CharMatcher.java

      }
    
      private String finishCollapseFrom(
          CharSequence sequence,
          int start,
          int end,
          char replacement,
          StringBuilder builder,
          boolean inMatchingGroup) {
        for (int i = start; i < end; i++) {
          char c = sequence.charAt(i);
          if (matches(c)) {
            if (!inMatchingGroup) {
              builder.append(replacement);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

          return failure();
        }
    
        DenseIntElementsAttr end_dense_elem_attr;
        Value end = strided_slice_op.getEnd();
        auto end_ranked_attr_type = mlir::dyn_cast<RankedTensorType>(end.getType());
        if (!end_ranked_attr_type ||
            !matchPattern(end, m_Constant(&end_dense_elem_attr))) {
          return failure();
        }
    
        DenseIntElementsAttr stride_dense_elem_attr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  3. src/internal/trace/order.go

    // queue implements a growable ring buffer with a queue API.
    type queue[T any] struct {
    	start, end int
    	buf        []T
    }
    
    // push adds a new event to the back of the queue.
    func (q *queue[T]) push(value T) {
    	if q.end-q.start == len(q.buf) {
    		q.grow()
    	}
    	q.buf[q.end%len(q.buf)] = value
    	q.end++
    }
    
    // grow increases the size of the queue.
    func (q *queue[T]) grow() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/authentication/v1/generated.pb.go

    			if b < 0x80 {
    				break
    			}
    		}
    		fieldNum := int32(wire >> 3)
    		wireType := int(wire & 0x7)
    		if wireType == 4 {
    			return fmt.Errorf("proto: BoundObjectReference: wiretype end group for non-group")
    		}
    		if fieldNum <= 0 {
    			return fmt.Errorf("proto: BoundObjectReference: illegal tag %d (wire type %d)", fieldNum, wire)
    		}
    		switch fieldNum {
    		case 1:
    			if wireType != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 72K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        if (has_successors.find(cluster) == has_successors.end()) {
          stack.push_back({cluster, false});
        }
      }
      while (!stack.empty()) {
        const Work item = stack.back();
        stack.pop_back();
        if (item.leave) {
          sorted->push_back(item.cluster);
          continue;
        }
    
        if (visited.find(item.cluster) != visited.end()) continue;
        visited.insert(item.cluster);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //
    //
    //  Range(begin, end [, step]) - Yields values {begin, begin+step,
    //                               begin+step+step, ...}. The values do not
    //                               include end. step defaults to 1.
    //  Values(v1, v2, ..., vN)    - Yields values {v1, v2, ..., vN}.
    //  ValuesIn(container)        - Yields values from a C-style array, an STL
    //  ValuesIn(begin,end)          container, or an iterator range [begin, end).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    						timelog("skip", w.dt.name)
    						w.out.Reset()
    						w.printSkip(t, "skipped due to unsupported VMA")
    						w.err = nil
    					}
    				}
    			}
    			timelog("end", w.dt.name)
    			w.end <- struct{}{}
    		}(w)
    	}
    
    	maxbg := maxbg
    	// for runtime.NumCPU() < 4 ||  runtime.GOMAXPROCS(0) == 1, do not change maxbg.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. src/time/time.go

    	}
    
    	// Estimate month on assumption that every month has 31 days.
    	// The estimate may be too low by at most one month, so adjust.
    	month = Month(day / 31)
    	end := int(daysBefore[month+1])
    	var begin int
    	if day >= end {
    		month++
    		begin = end
    	} else {
    		begin = int(daysBefore[month])
    	}
    
    	month++ // because January is 1
    	day = day - begin + 1
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/rbac/v1/generated.pb.go

    			if b < 0x80 {
    				break
    			}
    		}
    		fieldNum := int32(wire >> 3)
    		wireType := int(wire & 0x7)
    		if wireType == 4 {
    			return fmt.Errorf("proto: AggregationRule: wiretype end group for non-group")
    		}
    		if fieldNum <= 0 {
    			return fmt.Errorf("proto: AggregationRule: illegal tag %d (wire type %d)", fieldNum, wire)
    		}
    		switch fieldNum {
    		case 1:
    			if wireType != 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/CharMatcher.java

      }
    
      private String finishCollapseFrom(
          CharSequence sequence,
          int start,
          int end,
          char replacement,
          StringBuilder builder,
          boolean inMatchingGroup) {
        for (int i = start; i < end; i++) {
          char c = sequence.charAt(i);
          if (matches(c)) {
            if (!inMatchingGroup) {
              builder.append(replacement);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top