Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,770 for happens (0.18 sec)

  1. guava-gwt/src/com/google/common/base/Base.gwt.xml

        util.concurrent, like nearly all our packages, has two .gwt.xml files: one
        for prod and one for tests. However, unlike our other packages, as of this
        writing it has test supersource but no prod supersource.
    
        GWT happens to use the prod .gwt.xml, so it looks for no supersource for
        tests, either. This causes it to fail to find AtomicLongMapTest.
    
        Our workaround is to tell GWT that util.concurrent and all other packages
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. guava-gwt/src/com/google/common/escape/Escape.gwt.xml

        util.concurrent, like nearly all our packages, has two .gwt.xml files: one
        for prod and one for tests. However, unlike our other packages, as of this
        writing it has test supersource but no prod supersource.
    
        GWT happens to use the prod .gwt.xml, so it looks for no supersource for
        tests, either. This causes it to fail to find AtomicLongMapTest.
    
        Our workaround is to tell GWT that util.concurrent and all other packages
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. manifests/helm-profiles/demo.yaml

          targetPort: 8080
          name: http2
        - port: 443
          targetPort: 8443
          name: https
        - port: 31400
          targetPort: 31400
          name: tcp
          # This is the port where sni routing happens
        - port: 15443
          targetPort: 15443
          name: tls
        resources:
          requests:
            cpu: 10m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 06 01:25:34 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. tests/integration/iop-remote-integration-test-gateways.yaml

                    targetPort: 8080
                    name: http2
                  - port: 443
                    targetPort: 8443
                    name: https
                    # This is the port where sni routing happens
                  - port: 15443
                    targetPort: 15443
                    name: tls
                  ## Extra ports for testing
                  - port: 15012
                    targetPort: 15012
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 15 18:17:13 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  5. src/encoding/binary/varint.go

    const (
    	MaxVarintLen16 = 3
    	MaxVarintLen32 = 5
    	MaxVarintLen64 = 10
    )
    
    // AppendUvarint appends the varint-encoded form of x,
    // as generated by [PutUvarint], to buf and returns the extended buffer.
    func AppendUvarint(buf []byte, x uint64) []byte {
    	for x >= 0x80 {
    		buf = append(buf, byte(x)|0x80)
    		x >>= 7
    	}
    	return append(buf, byte(x))
    }
    
    // PutUvarint encodes a uint64 into buf and returns the number of bytes written.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_tidy_compat.txt

    #
    # Go 1.17 avoids loading the go.mod file for example.com/version v1.0.1
    # (because it is lower than the version explicitly required by m,
    # and the module that requires it — m — specifies 'go 1.17').
    #
    # That go.mod file happens not to affect the final 1.16 module graph anyway,
    # so the pruned graph is equivalent to the unpruned one.
    
    cp go.mod go.mod.orig
    go mod tidy
    cmp go.mod go.mod.orig
    
    # Make sure that -diff behaves the same as tidy.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. test/fixedbugs/bug159.go

    	x, y, z = f(), f(), f();
    	if x != 1 || y != 2 || z != 3 {
    		println("xyz: expected 1 2 3 got", x, y, z);
    		ok = false;
    	}
    
    	// this fails on 6g too.  one of the function calls
    	// happens after assigning to b.
    	a, b, c = f(), f(), f();
    	if a != 4 || b != 5 || c != 6 {
    		println("abc: expected 4 5 6 got", a, b, c);
    		ok = false;
    	}
    
    	if !ok {
    		os.Exit(1);
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 795 bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/versions/features.go

    //
    // Use this predicate to disable a behavior once a certain Go release
    // has happened (and stays enabled in the future).
    func Before(v, release string) bool {
    	if v == Future {
    		return false // an unknown future version happens after y.
    	}
    	return Compare(Lang(v), Lang(release)) < 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. guava-gwt/test/com/google/common/escape/testing/Testing.gwt.xml

        util.concurrent, like nearly all our packages, has two .gwt.xml files: one
        for prod and one for tests. However, unlike our other packages, as of this
        writing it has test supersource but no prod supersource.
    
        GWT happens to use the prod .gwt.xml, so it looks for no supersource for
        tests, either. This causes it to fail to find AtomicLongMapTest.
    
        Our workaround is to tell GWT that util.concurrent and all other packages
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentGraphResolveState.java

     *
     * <p>Resolution happens in multiple steps. The first step is to calculate the dependency graph, which involves selecting component instances and one or more variants of each instance.
     * This type exposes only the information and operations required to do this. In particular, it does not expose any information about artifacts unless this is actually required for graph resolution,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top