Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 111 for END (1.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. .bazelrc

    # Limit jobs to 100 to avoid running into "out of memory" issues (b/316266643)
    build:rbe_cross_compile_macos_x86 --jobs=100
    test:rbe_cross_compile_macos_x86 --jobs=100
    # END MACOS CROSS-COMPILE CONFIGS
    # END CROSS-COMPILE CONFIGS
    
    # Try to load the XLA warnings config if available
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. src/runtime/mbitmap.go

    //
    // Heap bitmaps
    //
    // The heap bitmap comprises 1 bit for each pointer-sized word in the heap,
    // recording whether a pointer is stored in that word or not. This bitmap
    // is stored at the end of a span for small objects and is unrolled at
    // runtime from type metadata for all larger objects. Objects without
    // pointers have neither a bitmap nor associated type metadata.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/parser.go

    	if s[:2] == "/*" {
    		return s[2 : len(s)-2] // lop off /* and */
    	}
    
    	// line comment (does not include newline)
    	// (on Windows, the line comment may end in \r\n)
    	i := len(s)
    	if s[i-1] == '\r' {
    		i--
    	}
    	return s[2:i] // lop off //, and \r at end, if any
    }
    
    func trailingDigits(text string) (uint, uint, bool) {
    	i := strings.LastIndexByte(text, ':') // look from right (Windows filenames may contain ':')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  8. src/crypto/tls/tls_test.go

    A7Sl2nLVf+4Iu/tAX/IF4MavARKC4PPHK3zfuGfPR3oCCcsAoz3kAzOeijvd0iXb
    H5jBImIxPL4WxQNiBTexAkF8D1EtpYuWdlVQ80/h/f4pBcGiXPqX5h2PQSQY7hP1
    +jwM1FGS4fREIOvlBYr/SzzQRtwrvrzGYxDEDbsC0ZGRnA==
    -----END CERTIFICATE-----
    `
    
    var ecdsaKeyPEM = testingKey(`-----BEGIN EC PARAMETERS-----
    BgUrgQQAIw==
    -----END EC PARAMETERS-----
    -----BEGIN EC TESTING KEY-----
    MIHcAgEBBEIBrsoKp0oqcv6/JovJJDoDVSGWdirrkgCWxrprGlzB9o0X8fV675X0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    			repl := " " + gofmtPos(expr, old.Pos())
    			end := fset.Position(old.End())
    			// Subtract 1 from the column if we are going to
    			// append a close parenthesis. That will set the
    			// correct column for the following characters.
    			sub := 0
    			if r.Name.Kind != "type" {
    				sub = 1
    			}
    			if end.Column > sub {
    				repl = fmt.Sprintf("%s /*line :%d:%d*/", repl, end.Line, end.Column-sub)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  10. cmd/test-utils_test.go

    	registerBucketLevelFunc(bucketRouter, api, apiFunctions...)
    }
    
    // Takes in Erasure object layer, and the list of API end points to be tested/required, registers the API end points and returns the HTTP handler.
    // Need isolated registration of API end points while writing unit tests for end points.
    // All the API end points are registered only for the default case.
    func initTestAPIEndPoints(objLayer ObjectLayer, apiFunctions []string) http.Handler {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
Back to top