Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,682 for con2 (0.04 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationDefaultsIntegrationTest.groovy

            buildFile << """
    configurations.conf.incoming.beforeResolve {
        if (configurations.conf.dependencies.empty) {
            configurations.conf.dependencies.add project.dependencies.create("org:default-dependency:1.0")
        }
    }
    task broken {
        def child = configurations.child
        def conf = configurations.conf
        doLast {
            child.files
            conf.files
        }
    }
    """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/controlFlow/differentTargets/break.kt

    fun test() {
        outer@ while (cond()) {
            consume(1)
            while (cond()) {
                consume(2)
                <expr>if (cond()) {
                    break
                } else if (cond()) {
                    break@outer
                }</expr>
            }
        }
    }
    
    fun consume(obj: Any?) {}
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 316 bytes
    - Viewed (0)
  3. src/syscall/exec_freebsd_test.go

    	paramPath := []byte("path\x00")
    	conf := make([]syscall.Iovec, 4)
    	conf[0].Base = &paramPath[0]
    	conf[0].SetLen(len(paramPath))
    	p, err := syscall.BytePtrFromString(root)
    	if err != nil {
    		t.Fatal(err)
    	}
    	conf[1].Base = p
    	conf[1].SetLen(len(root) + 1)
    
    	paramPersist := []byte("persist\x00")
    	conf[2].Base = &paramPersist[0]
    	conf[2].SetLen(len(paramPersist))
    	conf[3].Base = nil
    	conf[3].SetLen(0)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 20:38:48 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/canHaveConfigurationHierarchy/projectA-1.2-ivy.xml

    		revision="1.2"
    	/>
    	<configurations>
    		<conf name="runtime" visibility="public"/>
    		<conf name="default" visibility="public" extends="runtime"/>
    		<conf name="api" visibility="public"/>
    	</configurations>
    	<publications>
    		<artifact name="projectA" type="jar" ext="jar" conf="*"/>
    	</publications>
        <dependencies>
            <dependency org="test" name="projectB" rev="1.5" conf="runtime->default"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 632 bytes
    - Viewed (0)
  5. platforms/core-runtime/functional/src/main/java/org/gradle/internal/collect/PersistentList.java

                    return true;
                }
                if (o == null || getClass() != o.getClass()) {
                    return false;
                }
                Cons<?> cons = (Cons<?>) o;
                return head.equals(cons.head) && tail.equals(cons.tail);
            }
    
            @Override
            public int hashCode() {
                return Objects.hash(head, tail);
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. .github/workflows/replication.yaml

              sudo sysctl net.ipv6.conf.default.disable_ipv6=0
              make test-pbac
    
          - name: Test Config File
            run: |
              sudo sysctl net.ipv6.conf.all.disable_ipv6=0
              sudo sysctl net.ipv6.conf.default.disable_ipv6=0
              make test-configfile
    
          - name: Test Replication
            run: |
              sudo sysctl net.ipv6.conf.all.disable_ipv6=0
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. src/net/conf_test.go

    		},
    		{
    			name: "linux_no_nsswitch.conf",
    			c: &conf{
    				goos: "linux",
    			},
    			resolv:    defaultResolvConf,
    			nss:       &nssConf{err: fs.ErrNotExist},
    			hostTests: []nssHostTest{{"google.com", "myhostname", hostLookupFilesDNS}},
    		},
    		{
    			name: "linux_empty_nsswitch.conf",
    			c: &conf{
    				goos: "linux",
    			},
    			resolv:    defaultResolvConf,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:46:36 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/DependencyLockingIntegrationTest.groovy

        }
    }
    configurations {
        conf
        lockEnabledConf {
            extendsFrom conf
            resolutionStrategy.activateDependencyLocking()
        }
    }
    dependencies {
        conf 'org:foo:[1.0,)'
        conf 'org:foo:1.1'
    
        conf 'org:foz:latest.integration'
        conf 'org:foz:1.1'
    
        conf 'org:bar:1.+'
        conf 'org:bar:1.1'
    
        conf 'org:baz:+'
        conf 'org:baz:1.1'
    }
    task check {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 30 12:42:25 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. security/pkg/nodeagent/caclient/providers/citadel/client.go

    	}
    
    	conn, err := c.buildConnection()
    	if err != nil {
    		citadelClientLog.Errorf("Failed to connect to endpoint %s: %v", opts.CAEndpoint, err)
    		return nil, fmt.Errorf("failed to connect to endpoint %s", opts.CAEndpoint)
    	}
    	c.conn = conn
    	c.client = pb.NewIstioCertificateServiceClient(conn)
    	return c, nil
    }
    
    func (c *CitadelClient) Close() {
    	if c.conn != nil {
    		c.conn.Close()
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. src/crypto/tls/quic.go

    }
    
    func newQUICConn(conn *Conn, config *QUICConfig) *QUICConn {
    	conn.quic = &quicState{
    		signalc:                 make(chan struct{}),
    		blockedc:                make(chan struct{}),
    		enableStoreSessionEvent: config.EnableStoreSessionEvent,
    	}
    	conn.quic.events = conn.quic.eventArr[:0]
    	return &QUICConn{
    		conn: conn,
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top