Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 822 for run1 (0.26 sec)

  1. src/runtime/mfinal.go

    // program.
    //
    // Finalizers are run in dependency order: if A points at B, both have
    // finalizers, and they are otherwise unreachable, only the finalizer
    // for A runs; once A is freed, the finalizer for B can run.
    // If a cyclic structure includes a block with a finalizer, that
    // cycle is not guaranteed to be garbage collected and the finalizer
    // is not guaranteed to run, because there is no ordering that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. istioctl/pkg/waypoint/waypoint.go

    		Use:   "generate",
    		Short: "Generate a waypoint configuration",
    		Long:  "Generate a waypoint configuration as YAML",
    		Example: `  # Generate a waypoint as yaml
      istioctl waypoint generate --namespace default`,
    		RunE: func(cmd *cobra.Command, args []string) error {
    			gw, err := makeGateway(false)
    			if err != nil {
    				return fmt.Errorf("failed to create gateway: %v", err)
    			}
    			b, err := yaml.Marshal(gw)
    			if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. cmd/kube-scheduler/app/server.go

    	if err != nil {
    		return err
    	}
    	// add feature enablement metrics
    	utilfeature.DefaultMutableFeatureGate.AddMetrics()
    	return Run(ctx, cc, sched)
    }
    
    // Run executes the scheduler based on the given configuration. It only returns on error or when context is done.
    func Run(ctx context.Context, cc *schedulerserverconfig.CompletedConfig, sched *scheduler.Scheduler) error {
    	logger := klog.FromContext(ctx)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/token.go

    		`),
    
    		// Without this callback, if a user runs just the "token"
    		// command without a subcommand, or with an invalid subcommand,
    		// cobra will print usage information, but still exit cleanly.
    		// We want to return an error code in these cases so that the
    		// user knows that their command was invalid.
    		Run: cmdutil.SubCmdRun(),
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. pilot/cmd/pilot-agent/app/cmd.go

    )
    
    func NewRootCommand(sds istioagent.SDSServiceFactory) *cobra.Command {
    	rootCmd := &cobra.Command{
    		Use:          "pilot-agent",
    		Short:        "Istio Pilot agent.",
    		Long:         "Istio Pilot agent runs in the sidecar or gateway container and bootstraps Envoy.",
    		SilenceUsage: true,
    		FParseErrWhitelist: cobra.FParseErrWhitelist{
    			// Allow unknown flags for backward-compatibility.
    			UnknownFlags: true,
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    === List all runs of the GitHub Actions workflow
    
    The main actions page can be used to list all runs for a GitHub Actions workflow.
    
    image::ci-systems/github-actions-workflows.png[View workflow executions]
    
    === See the results for GitHub Actions workflow run
    
    Clicking on the link for a workflow run will show the details of the workflow run,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileCompatibilityIntegrationTest.groovy

                    }
                }
    
                def run11 = providers.gradleProperty("run11").isPresent()
                run {
                    javaLauncher = javaToolchains.launcherFor {
                        languageVersion = JavaLanguageVersion.of(run11 ? ${jdk11.javaVersion.majorVersion} : ${jdk17.javaVersion.majorVersion})
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/config_test.go

    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			var output bytes.Buffer
    
    			command := test.cmdProc(&output)
    			if test.componentConfigs != "" {
    				if err := command.Flags().Set("component-configs", test.componentConfigs); err != nil {
    					t.Fatalf("failed to set component-configs flag")
    				}
    			}
    			if err := command.RunE(nil, nil); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

      }
    
      /**
       * Creates an executor service that runs each task in the thread that invokes {@code
       * execute/submit}, as in {@code ThreadPoolExecutor.CallerRunsPolicy}. This applies both to
       * individually submitted tasks and to collections of tasks submitted via {@code invokeAll} or
       * {@code invokeAny}. In the latter case, tasks will run serially on the calling thread. Tasks are
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  10. src/io/io.go

    // return an error, unread the last rune read (or the rune prior to the
    // last-unread rune), or (in implementations that support the [Seeker] interface)
    // seek to the start of the rune before the current offset.
    type RuneScanner interface {
    	RuneReader
    	UnreadRune() error
    }
    
    // StringWriter is the interface that wraps the WriteString method.
    type StringWriter interface {
    	WriteString(s string) (n int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top