Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 746 for fwmark (0.22 sec)

  1. platforms/documentation/docs/src/snippets/ide/ideaAdditionalTestSources/kotlin/build.gradle.kts

    plugins {
        idea
        `java-library`
    }
    
    // tag::mark-additional-sourcesets-as-test[]
    sourceSets {
        create("intTest") {
            java {
                setSrcDirs(listOf("src/integration"))
            }
        }
    }
    
    idea {
        module {
            testSources.from(sourceSets["intTest"].java.srcDirs)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 341 bytes
    - Viewed (0)
  2. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/PropertyResourceBundleFallbackCharset.java

                super(charset, 1.0f, 1.0f);
            }
    
            static void mark(Buffer buffer) {
                buffer.mark();
            }
    
            static void reset(Buffer buffer) {
                buffer.reset();
            }
    
            @Override
            protected CoderResult decodeLoop(ByteBuffer in, CharBuffer out) {
                mark(in);
                mark(out);
    
                CoderResult coderResult = decoder.decode(in, out, false);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BasicJavadocLexer.java

            scanner.next();
            scanner.mark();
            scanner.find(';');
            String value = ENTITIES.get(scanner.region().toLowerCase());
            buffer.append(value);
            scanner.next();
        }
    
        private void parseHtmlEncodedChar(StringBuilder buffer) {
            scanner.next(2);
            scanner.mark();
            scanner.find(';');
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 7.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/ide/ideaAdditionalTestSources/groovy/build.gradle

    plugins {
        id 'idea'
        id 'java-library'
    }
    
    // tag::mark-additional-sourcesets-as-test[]
    sourceSets {
        intTest {
            java {
                srcDirs = ['src/integration']
            }
        }
    }
    
    idea {
        module {
            testSources.from(sourceSets.intTest.java.srcDirs)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 328 bytes
    - Viewed (0)
  5. src/go/internal/gccgoimporter/testdata/unicode.gox

    func IsControl (r <type -21>) <type -15>;
    func IsDigit (r <type -21>) <type -15>;
    func IsGraphic (r <type -21>) <type -15>;
    func IsLetter (r <type -21>) <type -15>;
    func IsLower (r <type -21>) <type -15>;
    func IsMark (r <type -21>) <type -15>;
    func IsNumber (r <type -21>) <type -15>;
    func IsOneOf (ranges <type 23 [] <type 24 *<type 2>>>, r <type -21>) <type -15>;
    func IsPrint (r <type -21>) <type -15>;
    func IsPunct (r <type -21>) <type -15>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/benchmark/bench.go

    	"time"
    	"unicode"
    )
    
    type Flags int
    
    const (
    	GC         = 1 << iota
    	NoGC Flags = 0
    )
    
    type Metrics struct {
    	gc        Flags
    	marks     []*mark
    	curMark   *mark
    	filebase  string
    	pprofFile *os.File
    }
    
    type mark struct {
    	name              string
    	startM, endM, gcM runtime.MemStats
    	startT, endT      time.Time
    }
    
    // New creates a new Metrics object.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 18:10:36 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. src/runtime/print.go

    }
    
    // hexdumpWords prints a word-oriented hex dump of [p, end).
    //
    // If mark != nil, it will be called with each printed word's address
    // and should return a character mark to appear just before that
    // word's value. It can return 0 to indicate no mark.
    func hexdumpWords(p, end uintptr, mark func(uintptr) byte) {
    	printlock()
    	var markbuf [1]byte
    	markbuf[0] = ' '
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 03:27:26 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/DefaultBuildableComponentIdResolveResult.java

        @Override
        public Collection<RejectedVersion> getRejectedVersions() {
            return safeBuild(rejections);
        }
    
        @Override
        public boolean mark(Object o) {
            if (mark == o) {
                return false;
            }
            mark = o;
            return true;
        }
    
        private static <T> Collection<T> safeBuild(ImmutableSet.Builder<T> builder) {
            if (builder == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go

    type RtMsghdr struct {
    	Msglen   uint16
    	Version  uint8
    	Type     uint8
    	Hdrlen   uint16
    	Index    uint16
    	Tableid  uint16
    	Priority uint8
    	Mpls     uint8
    	Addrs    int32
    	Flags    int32
    	Fmask    int32
    	Pid      int32
    	Seq      int32
    	Errno    int32
    	Inits    uint32
    	Rmx      RtMetrics
    }
    
    type RtMetrics struct {
    	Pksent   uint64
    	Expire   int64
    	Locks    uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  10. pilot/pkg/status/distribution/reporter_test.go

    		// Add each resource to our ledger for tracking history
    		// mark each of our resources as in flight so they are included in the report.
    		r.AddInProgressResource(*res)
    	}
    	firstNoncePrefix := r.ledger.RootHash()
    	connections := []string{
    		"conA", "conB", "conC",
    	}
    	// mark each fake connection as having acked version 1 of all resources
    	for _, con := range connections {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top