Search Options

Results per page
Sort
Preferred Languages
Advance

Results 321 - 330 of 373 for 13 (0.02 sec)

  1. internal/s3select/csv/testdata/testdata.zip

    01,4071701,I,QN18,Rego Park,4108,844,713.03,4,Queens,071303,4071303,I,QN17,Forest Hills,4108^3389290,2,2014-03-31 18:32:49,2014-03-31 18:44:04,N,1,-73.862319946289063,40.730392456054687,-73.842109680175781,40.711673736572266,1,2.39,10,1,0.5,2.2,0,,,13.7,1,1,196,95,green,0.16,0.0,0.0,56,36,8.28,1287,717.01,4,Queens,071701,4071701,I,QN18,Rego Park,4108,1445,749,4,Queens,074900,4074900,I,QN17,Forest Hills,4108^3389291,1,2014-03-15 23:52:06,2014-03-16 00:36:19,N,1,-73.86346435546875,40.7318572998046
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 111.6K bytes
    - Viewed (0)
  2. src/bufio/bufio_test.go

    }
    
    func (r13 *rot13Reader) Read(p []byte) (int, error) {
    	n, err := r13.r.Read(p)
    	for i := 0; i < n; i++ {
    		c := p[i] | 0x20 // lowercase byte
    		if 'a' <= c && c <= 'm' {
    			p[i] += 13
    		} else if 'n' <= c && c <= 'z' {
    			p[i] -= 13
    		}
    	}
    	return n, err
    }
    
    // Call ReadByte to accumulate the text of a file
    func readBytes(buf *Reader) string {
    	var b [1000]byte
    	nb := 0
    	for {
    		c, err := buf.ReadByte()
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Nov 01 21:52:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  3. LICENSE

    so that distribution is permitted only in or among countries not thus
    excluded.  In such case, this License incorporates the limitation as if
    written in the body of this License.
    
      13. The Free Software Foundation may publish revised and/or new
    versions of the Lesser General Public License from time to time.
    Such new versions will be similar in spirit to the present version,
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/IterablesTest.java

      }
    
      public void testSkip_structurallyModifiedSkipSomeList() throws Exception {
        List<String> list = newArrayList("a", "b", "c");
        Iterable<String> tail = skip(list, 1);
        list.subList(1, 3).clear();
        list.addAll(0, newArrayList("A", "B", "C"));
        assertThat(tail).containsExactly("B", "C", "a").inOrder();
      }
    
      public void testSkip_structurallyModifiedSkipAll() throws Exception {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 19:12:33 UTC 2024
    - 45K bytes
    - Viewed (0)
  5. guava/src/com/google/common/io/BaseEncoding.java

          // characters that can't happen.
          int zeroesInBitsPerChar = Integer.numberOfTrailingZeros(bitsPerChar);
          this.charsPerChunk = 1 << (3 - zeroesInBitsPerChar);
          this.bytesPerChunk = bitsPerChar >> zeroesInBitsPerChar;
    
          this.mask = chars.length - 1;
    
          this.decodabet = decodabet;
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  6. cmd/bucket-replication-metrics_gen.go

    			}
    		}
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z *XferStats) Msgsize() (s int) {
    	s = 1 + 3 + msgp.Float64Size + 3 + msgp.Float64Size + 2 + msgp.Float64Size + 2 + msgp.Int64Size
    	return
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  7. api/go1.11.txt

    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR ideal-int
    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_DEBUG = 6
    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_DEBUG ideal-int
    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT = 13
    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT ideal-int
    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_EXCEPTION = 3
    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_EXCEPTION ideal-int
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Aug 22 03:48:56 UTC 2018
    - 25K bytes
    - Viewed (0)
  8. cmd/object-handlers_test.go

    			accessKey:          credentials.AccessKey,
    			secretKey:          credentials.SecretKey,
    			expectedRespStatus: http.StatusOK,
    		},
    		// Test case - 13, copy metadata from newObject1 with unsatisfying modified header.
    		13: {
    			bucketName:         bucketName,
    			newObjectName:      "newObject1",
    			copySourceHeader:   url.QueryEscape(SlashSeparator + bucketName + SlashSeparator + objectName),
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 12 20:10:44 UTC 2024
    - 163.2K bytes
    - Viewed (0)
  9. api/go1.10.txt

    pkg crypto/x509, const ExtKeyUsageMicrosoftCommercialCodeSigning = 12
    pkg crypto/x509, const ExtKeyUsageMicrosoftCommercialCodeSigning ExtKeyUsage
    pkg crypto/x509, const ExtKeyUsageMicrosoftKernelCodeSigning = 13
    pkg crypto/x509, const ExtKeyUsageMicrosoftKernelCodeSigning ExtKeyUsage
    pkg crypto/x509, const NameConstraintsWithoutSANs = 6
    pkg crypto/x509, const NameConstraintsWithoutSANs InvalidReason
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Feb 06 05:00:01 UTC 2018
    - 30.1K bytes
    - Viewed (0)
  10. manifests/addons/dashboards/istio-service-dashboard.json

              "refId": "A"
            }
          ],
          "title": "Client Workloads",
          "type": "row"
        },
        {
          "gridPos": {
            "h": 3,
            "w": 24,
            "x": 0,
            "y": 13
          },
          "id": 45,
          "links": [],
          "options": {
            "code": {
              "language": "plaintext",
              "showLineNumbers": false,
              "showMiniMap": false
            },
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
Back to top