Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 289 for irides (0.8 sec)

  1. src/cmd/covdata/dump.go

    	switch d.cmd {
    	case pkglistMode:
    		fmt.Fprintf(os.Stderr, "  go tool covdata pkglist -i=dir1,dir2\n\n")
    		fmt.Fprintf(os.Stderr, "  \treads coverage data files from dir1+dirs2\n")
    		fmt.Fprintf(os.Stderr, "  \tand writes out a list of the import paths\n")
    		fmt.Fprintf(os.Stderr, "  \tof all compiled packages.\n")
    	case textfmtMode:
    		fmt.Fprintf(os.Stderr, "  go tool covdata textfmt -i=dir1,dir2 -o=out.txt\n\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:57 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. src/crypto/aes/gcm_s390x.go

    type gcmCount [16]byte
    
    // inc increments the rightmost 32-bits of the count value by 1.
    func (x *gcmCount) inc() {
    	byteorder.BePutUint32(x[len(x)-4:], byteorder.BeUint32(x[len(x)-4:])+1)
    }
    
    // gcmLengths writes len0 || len1 as big-endian values to a 16-byte array.
    func gcmLengths(len0, len1 uint64) [16]byte {
    	v := [16]byte{}
    	byteorder.BePutUint64(v[0:], len0)
    	byteorder.BePutUint64(v[8:], len1)
    	return v
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/FileBackedObjectHolderTest.groovy

            then:
            isIntegrityViolated(file)
    
            when:
            cache.set "b"
    
            then:
            cache.get() == "b"
        }
    
        def "maybeUpdate only writes back changes from update"() {
            given:
            // Note: we are using invocation of the serializer as an indicator of
            // file read/write activity.
            def serializer = Spy(DefaultSerializer)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/dir.go

    }
    
    func (d Dir) ModeFile() string {
    	return d.modefile
    }
    
    // SetMode updates the telemetry mode with the given mode.
    // Acceptable values for mode are "on", "off", or "local".
    //
    // SetMode always writes the mode file, and explicitly records the date at
    // which the modefile was updated. This means that calling SetMode with "on"
    // effectively resets the timeout before the next telemetry report is uploaded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:13:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/primitives/Ints.java

        // array slot is read and written exactly once. However, it can have very poor memory locality:
        // benchmarking shows it can take 7 times longer than the other two in some cases. The other two
        // do n swaps, minus a delta (0 or 2 for Reversal, gcd(d, n) for Successive), so that's about
        // twice as many reads and writes. But benchmarking shows that they usually perform better than
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/MapMaker.java

        this.initialCapacity = initialCapacity;
        return this;
      }
    
      int getInitialCapacity() {
        return (initialCapacity == UNSET_INT) ? DEFAULT_INITIAL_CAPACITY : initialCapacity;
      }
    
      /**
       * Guides the allowed concurrency among update operations. Used as a hint for internal sizing. The
       * table is internally partitioned to try to permit the indicated number of concurrent updates
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/lex/lex.go

    // A TokenReader is like a reader, but returns lex tokens of type Token. It also can tell you what
    // the text of the most recently returned token is, and where it was found.
    // The underlying scanner elides all spaces except newline, so the input looks like a stream of
    // Tokens; original spacing is lost but we don't need it.
    type TokenReader interface {
    	// Next returns the next token.
    	Next() ScanToken
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_fuzz_mutator.txt

    [!fuzz] skip
    
    # Test basic fuzzing mutator behavior.
    #
    # fuzz_test.go has two fuzz targets (FuzzA, FuzzB) which both add a seed value.
    # Each fuzz function writes the input to a log file. The coordinator and worker
    # use separate log files. check_logs.go verifies that the coordinator only
    # tests seed values and the worker tests mutated values on the fuzz target.
    
    [short] skip
    env GOCACHE=$WORK/cache
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/process/ArgWriter.java

                    }
                    return Collections.singletonList("@" + argsFile.getAbsolutePath());
                }
            };
        }
    
        /**
         * Writes a set of args on a single line, escaping and quoting as required.
         */
        @Override
        public ArgWriter args(Object... args) {
            for (int i = 0; i < args.length; i++) {
                Object arg = args[i];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:14:33 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. src/cmd/covdata/metamerge.go

    // only the packages of interest. At this point we also emit a merged
    // counter data file as well.
    //
    // Case 3: if "-pcombine" is in effect, we don't write anything at
    // this point (all writes will happen at the end of the run).
    func (mm *metaMerge) endPod(pcombine bool) {
    	if pcombine {
    		// Just clear out the pod data, we'll do all the
    		// heavy lifting at the end.
    		mm.pod = nil
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top