Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Class2 (0.06 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

        public void beforeExecute(@DelegatesTo(GradleExecuter.class) Closure action) {
            beforeExecute.add(new ClosureBackedAction<>(action));
        }
    
        @Override
        public void afterExecute(Action<? super GradleExecuter> action) {
            afterExecute = afterExecute.add(action);
        }
    
        @Override
        public void afterExecute(@DelegatesTo(GradleExecuter.class) Closure action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    There are several ways to look up an element in a container by name:
    ```
    tasks {
        "wrapper"() // 1 - returns TaskProvider<Task>
        "wrapper"(Wrapper::class) // 2 - returns TaskProvider<Wrapper>
        "wrapper"(Wrapper::class) { // 3 - configures a task named wrapper of type Wrapper
        }
        "wrapper" { // 4 - configures a task named wrapper of type Task
        }
    }
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  3. pilot/pkg/model/telemetry_logging_test.go

    				Providers: []*tpb.ProviderRef{
    					{
    						Name: "envoy-json",
    					},
    				},
    			},
    		},
    	}
    	tests := []struct {
    		name             string
    		cfgs             []config.Config
    		class            networking.ListenerClass
    		proxy            *Proxy
    		defaultProviders []string
    		want             []string
    	}{
    		{
    			"empty",
    			nil,
    			networking.ListenerClassSidecarOutbound,
    			sidecar,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

      Add-MpPreference -ExclusionProcess "${env:NODE_DIR}\containerd.exe"
    }
    
    # Lookup the path of containerd config if exists, else returns a default.
    function Get_Containerd_ConfigPath {
      $service = Get-WMIObject -Class Win32_Service -Filter  "Name='containerd'"
      if (!($service -eq $null) -and
          $service.PathName -match ".*\s--config\s*(\S+).*" -and
          $matches.Count -eq 2) {
        return $matches[1]
      } else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top