Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,419 for setOp (0.07 sec)

  1. .github/workflows/test.yml

              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v4
          - name: Set up Python
            uses: actions/setup-python@v5
            with:
              python-version: "3.11"
              # Issue ref: https://github.com/actions/setup-python/issues/436
              # cache: "pip"
              # cache-dependency-path: pyproject.toml
          - uses: actions/cache@v4
            id: cache
            with:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. .github/workflows/go-fips.yml

            go-version: [1.22.x]
            os: [ubuntu-latest]
        steps:
          - uses: actions/checkout@v4
          - uses: actions/setup-go@v5
            with:
              go-version: ${{ matrix.go-version }}
    
          - name: Set up Docker Buildx
            uses: docker/setup-buildx-action@v2
    
          - name: Setup dockerfile for build test
            run: |
              GO_VERSION=$(go version | cut -d ' ' -f 3 | sed 's/go//')
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. tests/integration/security/filebased_tls_origination/main_test.go

    	// nolint: staticcheck
    	framework.
    		NewSuite(m).
    		Label(label.CustomSetup).
    		Setup(istio.Setup(&inst, setupConfig, cert.CreateCustomEgressSecret)).
    		Setup(namespace.Setup(&appNS, namespace.Config{Prefix: "appns", Inject: true})).
    		Setup(namespace.Setup(&serviceNS, namespace.Config{Prefix: "serverns", Inject: true})).
    		Setup(func(ctx resource.Context) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. tests/integration/pilot/multiplecontrolplanes/main_test.go

    			c, _ := istio.DefaultConfig(ctx)
    			return c.EnableCNI
    		}).
    		SetupParallel(
    			namespace.Setup(&userGroup1NS, namespace.Config{Prefix: "usergroup-1", Labels: map[string]string{"usergroup": "usergroup-1"}}),
    			namespace.Setup(&userGroup2NS, namespace.Config{Prefix: "usergroup-2", Labels: map[string]string{"usergroup": "usergroup-2"}})).
    		Setup(istio.Setup(nil, func(ctx resource.Context, cfg *istio.Config) {
    			s := ctx.Settings()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. pkg/volume/util/operationexecutor/operation_executor_test.go

    )
    
    var _ OperationGenerator = &fakeOperationGenerator{}
    
    func TestOperationExecutor_MountVolume_ConcurrentMountForNonAttachableAndNonDevicemountablePlugins(t *testing.T) {
    	// Arrange
    	ch, quit, oe := setup()
    	volumesToMount := make([]VolumeToMount, numVolumesToMount)
    	secretName := "secret-volume"
    	volumeName := v1.UniqueVolumeName(secretName)
    
    	// Act
    	for i := range volumesToMount {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  6. pkg/test/framework/suite.go

    	// RequireMaxVersion validates the environment meets a maximum version
    	RequireMaxVersion(minorVersion uint) Suite
    	// Setup runs enqueues the given setup function to run before test execution.
    	Setup(fn resource.SetupFn) Suite
    	Teardown(fn resource.TeardownFn) Suite
    	// SetupParallel runs the given setup functions in parallel before test execution.
    	SetupParallel(fns ...resource.SetupFn) Suite
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. android/guava-testlib/test/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilderTest.java

          return Collections.<Class<? extends AbstractTester>>singletonList(MyTester.class);
        }
      }
    
      public void testLifecycle() {
        boolean[] setUp = {false};
        Runnable setUpRunnable =
            new Runnable() {
              @Override
              public void run() {
                setUp[0] = true;
              }
            };
    
        boolean[] tearDown = {false};
        Runnable tearDownRunnable =
            new Runnable() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. .github/workflows/tests.yml

            platform: [ ubuntu-latest ]
        runs-on: ${{ matrix.platform }}
    
        steps:
          - name: Setup TiDB
            uses: Icemap/tidb-action@main
            with:
              port: 9940
              version: ${{matrix.dbversion}}
    
          - name: Set up Go 1.x
            uses: actions/setup-go@v4
            with:
              go-version: ${{ matrix.go }}
    
          - name: Check out code into the Go module directory
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:24:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/SystemPropertyPropagationCrossVersionTest.groovy

    import org.gradle.util.GradleVersion
    
    @ToolingApiVersion('>=7.6')
    @TargetGradleVersion('>=7.6')
    class SystemPropertyPropagationCrossVersionTest extends ToolingApiSpecification {
    
        OutputStream out
    
        def setup() {
            out = new ByteArrayOutputStream()
            System.setProperty('mySystemProperty', 'defined in the client JVM')
            buildFile << '''
                tasks.register('printSystemProperty') {
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/EclipseModelBuilderDependenciesTest.groovy

    import spock.lang.Issue
    
    class EclipseModelBuilderDependenciesTest extends AbstractProjectBuilderSpec {
        Project child1
        Project child2
        Project child3
        Project child4
        Project child5
    
        def setup() {
            child1 = ProjectBuilder.builder().withName("child1").withParent(project).build()
            child2 = ProjectBuilder.builder().withName("child2").withParent(project).build()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top