Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 370 for chains (0.22 sec)

  1. src/cmd/compile/internal/ssa/schedule.go

    				continue
    			}
    			for _, a := range v.Args {
    				if a.Block == b {
    					edges = append(edges, edge{a, v})
    				}
    			}
    		}
    
    		// Find store chain for block.
    		// Store chains for different blocks overwrite each other, so
    		// the calculated store chain is good only for this block.
    		for _, v := range b.Values {
    			if v.Op != OpPhi && v.Op != OpInitMem && v.Type.IsMemory() {
    				nextMem[v.MemoryArg().ID] = v
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformExecutionBuildOperationIntegrationTest.groovy

                with(it) {
                    artifactName == componentId.displayName
                }
            }
            executionIdentifications.artifactName ==~ ['file1.jar', 'file2.jar']
        }
    
        def "transform chains are captured"() {
            settingsFile << """
                include 'producer', 'consumer'
            """
    
            setupBuildWithColorAttributes()
            setupExternalDependency()
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  3. src/compress/flate/deflate.go

    		for i, val := range dst {
    			di := i + index
    			hh := &d.hashHead[val&hashMask]
    			// Get previous value with the same hash.
    			// Our chain should point to the previous value.
    			d.hashPrev[di&windowMask] = *hh
    			// Set the head of the hash chain to us.
    			*hh = uint32(di + d.hashOffset)
    		}
    	}
    	// Update window information.
    	d.windowEnd = n
    	d.index = n
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_client_test.go

    // when certain messages are seen.
    type opensslOutputSink struct {
    	handshakeComplete chan struct{}
    	readKeyUpdate     chan struct{}
    	all               []byte
    	line              []byte
    }
    
    func newOpensslOutputSink() *opensslOutputSink {
    	return &opensslOutputSink{make(chan struct{}), make(chan struct{}), nil, nil}
    }
    
    // opensslEndOfHandshake is a message that the “openssl s_server” tool will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/named.go

    // heading.
    
    // under returns the expanded underlying type of n0; possibly by following
    // forward chains of named types. If an underlying type is found, resolve
    // the chain by setting the underlying type for each defined type in the
    // chain before returning it. If no underlying type is found or a cycle
    // is detected, the result is Typ[Invalid]. If a cycle is detected and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/util/util.go

    	// Passthrough is the name of the virtual host used to forward traffic to the
    	// PassthroughCluster
    	Passthrough = "allow_any"
    
    	// PassthroughFilterChain to catch traffic that doesn't match other filter chains.
    	PassthroughFilterChain = "PassthroughFilterChain"
    
    	// Inbound pass through cluster need to the bind the loopback ip address for the security and loop avoidance.
    	InboundPassthroughCluster = "InboundPassthroughCluster"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/capture/run.go

    	// Create a new chain for redirecting outbound traffic to the common Envoy port.
    	// In both chains, '-j RETURN' bypasses Envoy and '-j ISTIOREDIRECT'
    	// redirects to Envoy.
    	cfg.ruleBuilder.AppendRule(iptableslog.UndefinedCommand,
    		constants.ISTIOREDIRECT, constants.NAT, "-p", constants.TCP, "-j", constants.REDIRECT, "--to-ports", cfg.cfg.ProxyPort)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  8. src/go/types/named.go

    // heading.
    
    // under returns the expanded underlying type of n0; possibly by following
    // forward chains of named types. If an underlying type is found, resolve
    // the chain by setting the underlying type for each defined type in the
    // chain before returning it. If no underlying type is found or a cycle
    // is detected, the result is Typ[Invalid]. If a cycle is detected and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. src/crypto/x509/name_constraints_test.go

    					ok: []string{"dns:.foo.com"},
    				},
    			},
    		},
    		leaf: leafSpec{
    			sans: []string{"dns:foo.example.com"},
    		},
    		noOpenSSL: true, // OpenSSL's chain building is not informed by constraints.
    	},
    
    	// #24: when multiple roots are valid, chain building can avoid roots
    	// with incompatible constraints.
    	{
    		roots: []constraintsSpec{
    			{},
    			{
    				ok: []string{"dns:foo.com"},
    			},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    				// location so we give the some hint as to where the
    				// inlining happened that led to this instruction. So for
    				// example, suppose we have the following (inlined) call
    				// chains for this instruction:
    				//   F1->G->H
    				//   F2->G->H
    				// We could tag the instructions from the first call with
    				// F1 and instructions from the second call with F2. But
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
Back to top