Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 50 for Coalesced (0.31 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"ClientTrace.WroteHeaders", Field, 7},
    		{"ClientTrace.WroteRequest", Field, 7},
    		{"ContextClientTrace", Func, 7},
    		{"DNSDoneInfo", Type, 7},
    		{"DNSDoneInfo.Addrs", Field, 7},
    		{"DNSDoneInfo.Coalesced", Field, 7},
    		{"DNSDoneInfo.Err", Field, 7},
    		{"DNSStartInfo", Type, 7},
    		{"DNSStartInfo.Host", Field, 7},
    		{"GotConnInfo", Type, 7},
    		{"GotConnInfo.Conn", Field, 7},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc.go

    		Issuer string `json:"iss"`
    	}{}
    	if err := json.Unmarshal(payload, &claims); err != nil {
    		return "", fmt.Errorf("while unmarshaling token: %v", err)
    	}
    	// Coalesce the legacy GoogleIss with the new one.
    	//
    	// http://openid.net/specs/openid-connect-core-1_0.html#GoogleIss
    	if claims.Issuer == "accounts.google.com" {
    		return "https://accounts.google.com", nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/liveness/plive.go

    	// input parameters.
    	for j, n := range lv.vars {
    		if n.Class != ir.PPARAM && lv.stackMaps[0].Get(int32(j)) {
    			lv.f.Fatalf("%v %L recorded as live on entry", lv.fn.Nname, n)
    		}
    	}
    }
    
    // Compact coalesces identical bitmaps from lv.livevars into the sets
    // lv.stackMapSet.
    //
    // Compact clears lv.livevars.
    //
    // There are actually two lists of bitmaps, one list for the local variables and one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertNull(pom.getValue("distributionManagement/site/name"));
        }
    
        @Test
        void testXmlTextCoalescing() throws Exception {
            PomTestWrapper pom = buildPom("xml-coalesce-text");
            assertEquals("A  Test  Project Property", pom.getValue("properties/prop0"));
            assertEquals("That's a test!", pom.getValue("properties/prop1"));
            assertEquals(
                    32 * 1024,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  5. src/regexp/syntax/parse.go

    		lo = minFold
    	}
    	if hi > maxFold {
    		// [maxFold+1, hi] needs no folding.
    		r = appendRange(r, maxFold+1, hi)
    		hi = maxFold
    	}
    
    	// Brute force. Depend on appendRange to coalesce ranges on the fly.
    	for c := lo; c <= hi; c++ {
    		r = appendRange(r, c, c)
    		f := unicode.SimpleFold(c)
    		for f != c {
    			r = appendRange(r, f, f)
    			f = unicode.SimpleFold(f)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. src/testdata/Isaac.Newton-Opticks.txt

    hinder not the transparency of the Air, being divided into parts too
    small to cause any Reflexion in their Superficies. But when in order to
    compose drops of Rain they begin to coalesce and constitute Globules of
    all intermediate sizes, those Globules, when they become of convenient
    size to reflect some Colours and transmit others, may constitute Clouds
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  7. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    Atmosphere, we may observe, that when Vapours are first raised, they hinder not the transparency of the Air, being divided into parts too small to cause any Reflexion in their Superficies. But when in order to compose drops of Rain they begin to coalesce and constitute Globules of all intermediate sizes, those Globules, when they become of convenient size to reflect some Colours and transmit others, may constitute Clouds of various Colours according to their sizes. And I see not what can be rationally...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  8. src/net/http/h2_bundle.go

    	if c.err == nil {
    		c.p.addConnLocked(addr, c.res)
    	}
    	c.p.mu.Unlock()
    
    	close(c.done)
    }
    
    // addConnIfNeeded makes a NewClientConn out of c if a connection for key doesn't
    // already exist. It coalesces concurrent calls with the same key.
    // This is used by the http1 Transport code when it creates a new connection. Because
    // the http1 Transport doesn't de-dup TCP dials to outbound hosts (because it doesn't know
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/ssa.go

    	// TODO: keep a single varnum map, then make all of these maps slices instead?
    	vars map[ir.Node]*ssa.Value
    
    	// fwdVars are variables that are used before they are defined in the current block.
    	// This map exists just to coalesce multiple references into a single FwdRef op.
    	// *Node is the unique identifier (an ONAME Node) for the variable.
    	fwdVars map[ir.Node]*ssa.Value
    
    	// all defined variables at the end of each block. Indexed by block ID.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let description = [{
    GIF images with frame or transparency compression are not supported.
    On Linux and MacOS systems, convert animated GIFs from compressed to
    uncompressed by running:
    
        convert $src.gif -coalesce $dst.gif
    
    This op also supports decoding JPEGs and PNGs, though it is cleaner to use
    `tf.io.decode_image`.
      }];
    
      let arguments = (ins
        Arg<TF_StrTensor, [{0-D.  The GIF-encoded image.}]>:$contents
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top