Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for yearRange (0.3 sec)

  1. internal/s3select/sql/jsondata/books.json

    {
        "title": "Murder on the Orient Express",
        "authorInfo": {
            "name": "Agatha Christie",
            "yearRange": [1890, 1976],
            "penName": "Mary Westmacott"
        },
        "genre": "Crime novel",
        "publicationHistory": [
            {
                "year": 1934,
                "publisher": "Collins Crime Club (London)",
                "type": "Hardcover",
                "pages": 256
            },
            {
                "year": 1934,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  2. internal/s3select/sql/jsonpath_test.go

    		{"s.title", []interface{}{"Murder on the Orient Express", "The Robots of Dawn", "Pigs Have Wings"}},
    		{"s.authorInfo.yearRange", []interface{}{[]interface{}{1890.0, 1976.0}, []interface{}{1920.0, 1992.0}, []interface{}{1881.0, 1975.0}}},
    		{"s.authorInfo.name", []interface{}{"Agatha Christie", "Isaac Asimov", "P. G. Wodehouse"}},
    		{"s.authorInfo.yearRange[0]", []interface{}{1890.0, 1920.0, 1881.0}},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 19 18:05:16 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/chacha20/chacha_s390x.s

    	ROUND4(X0, X5, X15, X10, X1, X6, X12, X11, X2, X7, X13, X8,  X3, X4, X14, X9)
    
    	ADD $-1, R1
    	BNE loop
    
    	// decrement length
    	ADD $-256, R4
    
    	// rearrange vectors
    	SHUFFLE(X0, X1, X2, X3, M0, M1, M2, M3)
    	ADDV(J0, X0, X1, X2, X3)
    	SHUFFLE(X4, X5, X6, X7, M0, M1, M2, M3)
    	ADDV(KEY0, X4, X5, X6, X7)
    	SHUFFLE(X8, X9, X10, X11, M0, M1, M2, M3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/math/QuantilesAlgorithm.java

            }
            return array[k];
          } else {
            int midIndex = (from + to) >>> 1;
            // Choose the median of the elements at the from, to and mid indexes,
            // and rearrange so that array[from]<=array[from+1], and
            // array[to] => array[from + 1].
    
            swap(array, midIndex, from + 1);
    
            if (array[from] > array[to]) {
              swap(array, from, to);
            }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 01 16:30:37 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug_lines_test.go

    	// This test is potentially fragile, the goal is that debugging should step properly through "sayhi"
    	// If the blocks are reordered in a way that changes the statement order but execution flows correctly,
    	// then rearrange the expected numbers.  Register abi and not-register-abi also have different sequences,
    	// at least for now.
    
    	testDebugLinesDefault(t, "-N -l", "sayhi.go", "sayhi", []int{8, 9, 10, 11}, false)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:24:52 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  6. src/math/expm1.go

    //              expm1(r+c) = expm1(r) + c + expm1(r)*c
    //                         ~ expm1(r) + c + r*c
    //      Thus c+r*c will be added in as the correction terms for
    //      expm1(r+c). Now rearrange the term to avoid optimization
    //      screw up:
    //                      (      2                                    2 )
    //                      ({  ( r    [ R1 -  (3 - R1*r/2) ]  )  }    r  )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

            run("merge")
    
            then:
            outputContains("result = [a.txt, b.txt]")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/13745")
        def "can compose and filter a file collection to rearrange its elements"() {
            taskTypeLogsInputFileCollectionContent()
            buildFile """
                class LegacyTask extends ShowFilesTask {
                    void setInFiles(def c) {
                        inFiles.from = c
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. src/os/exec/exec.go

    	skipped   int64
    
    	// TODO(bradfitz): we could keep one large []byte and use part of it for
    	// the prefix, reserve space for the '... Omitting N bytes ...' message,
    	// then the ring buffer suffix, and just rearrange the ring buffer
    	// suffix when Bytes() is called, but it doesn't seem worth it for
    	// now just for error messages. It's only ~64KB anyway.
    }
    
    func (w *prefixSuffixSaver) Write(p []byte) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_test.go

    		expectedOrder = append(expectedOrder, containerName)
    		cStatus := &kubecontainer.Status{
    			ID:   kubecontainer.BuildContainerID("test", id),
    			Name: containerName,
    		}
    		// Rearrange container statuses
    		if i%2 == 0 {
    			cStatuses = append(cStatuses, cStatus)
    		} else {
    			cStatuses = append([]*kubecontainer.Status{cStatus}, cStatuses...)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.11.md

      * If you have to use the legacy in-tree cloud providers, you can rearrange your config like the example below. If you need the `cloud-config` file (located in `{cloud-config-path}`), you can mount it into the API Server and controller-manager containers using ExtraVolumes, as in:
    ```
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
Back to top