Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 142 for istr (0.05 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/str.go

    Dmitri Shuralyov <******@****.***> 1697571594 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 504 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go

    	Frsize   uint64
    	Blocks   uint64
    	Bfree    uint64
    	Bavail   uint64
    	Files    uint64
    	Ffree    uint64
    	Favail   uint64
    	Fsid     uint64
    	Basetype [16]int8
    	Flag     uint64
    	Namemax  uint64
    	Fstr     [32]int8
    }
    
    type RawSockaddrInet4 struct {
    	Family uint16
    	Port   uint16
    	Addr   [4]byte /* in_addr */
    	Zero   [8]int8
    }
    
    type RawSockaddrInet6 struct {
    	Family   uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RemoteDependencyResolveConsoleIntegrationTest.groovy

            }
        }
    
        byte[] longXml(File file) {
            def instr = new ByteArrayOutputStream()
            instr << file.bytes
            while (instr.size() < 2048) {
                instr << "          ".bytes
            }
            return instr.toByteArray()
        }
    
        byte[] longJar(File file) {
            return longXml(file)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. src/encoding/gob/encode.go

    	defer enc.freeEncoderState(state)
    	state.fieldnum = -1
    	for i := 0; i < len(engine.instr); i++ {
    		instr := &engine.instr[i]
    		if i >= value.NumField() {
    			// encStructTerminator
    			instr.op(instr, state, reflect.Value{})
    			break
    		}
    		field := value.FieldByIndex(instr.index)
    		if instr.indir > 0 {
    			field = encIndirect(field, instr.indir)
    			// TODO: Is field guaranteed valid? If so we could avoid this check.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/kryo/KryoBackedCodecTest.groovy

            when:
            def instr = new ByteArrayInputStream(outstr.toByteArray())
            def decoder = new KryoBackedDecoder(instr)
    
            then:
            instr.available() == 4108
            decoder.readPosition == 0
    
            when:
            decoder.readBoolean()
            decoder.readByte()
            decoder.readLong()
    
            then:
            instr.available() == 12 // decoder has buffered from instr
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. platforms/software/resources/src/main/java/org/gradle/internal/resource/transfer/AccessorBackedExternalResource.java

            private CountingInputStream instr;
            private long count;
    
            CountingReadableContent(ReadableContent source) {
                this.source = source;
            }
    
            @Override
            public InputStream open() throws ResourceException {
                if (instr != null) {
                    count += instr.getCount();
                }
                instr = new CountingInputStream(source.open());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/net/InetAddressesTest.java

        String ipStr = "192.168.0.1";
        // Shouldn't hit DNS, because it's an IP string literal.
        InetAddress ipv4Addr = InetAddress.getByName(ipStr);
        assertEquals(ipv4Addr, InetAddresses.forString(ipStr));
        assertTrue(InetAddresses.isInetAddress(ipStr));
      }
    
      public void testForStringIPv4NonAsciiInput() throws UnknownHostException {
        String ipStr = "૧૯૨.૧૬૮.૦.૧"; // 192.168.0.1 in Gujarati digits
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

            @Override
            public void read(DataInputStream instr) throws IOException {
                int count = instr.readInt();
                entries.clear();
                for (int i = 0; i < count; i++) {
                    IndexEntry entry = new IndexEntry();
                    entry.hashCode = instr.readLong();
                    entry.dataBlock = BlockPointer.pos(instr.readLong());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  9. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/GradleWorkerMain.java

        public void run() throws Exception {
            DataInputStream instr = new DataInputStream(new EncodedStream.EncodedInput(System.in));
    
            // Read shared packages
            int sharedPackagesCount = instr.readInt();
            List<String> sharedPackages = new ArrayList<String>(sharedPackagesCount);
            for (int i = 0; i < sharedPackagesCount; i++) {
                sharedPackages.add(instr.readUTF());
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/project/antbuilder/AntBuilderDelegate.java

                    throw new RuntimeException(ex);
                }
            } else if (argNames.equals(Collections.singleton("resource"))) {
                InputStream instr = antlibClassLoader.getResourceAsStream(args.get("resource"));
                try {
                    Node xml = new XmlParser().parse(instr);
                    for (Object taskdefObject : (NodeList) xml.get("taskdef")) {
                        Node taskdef = (Node) taskdefObject;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 10 10:55:07 UTC 2022
    - 4.7K bytes
    - Viewed (0)
Back to top