Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 3,860 for printsp (0.18 sec)

  1. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/precompiled/PrecompiledScriptPluginAccessorsTest.kt

                    withFile(
                        "consumer.plugin.gradle.kts",
                        """
                            plugins { id("producer.plugin") }
                            println(before) // ok
                            println(after) // compilation error
                        """
                    )
                }
            }
            withDefaultSettings().appendText(
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitor.java

            ExecResult result = run(command);
            output.printf("Run: %s", Arrays.toString(command));
            output.printf("Stdout: %s", result.stdout);
            output.printf("Stderr: %s", result.stderr);
    
            result.assertZeroExit();
            return new StdoutAndPatterns(result.stdout);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                                log.println( request );
                                Hexdump.hexdump( log, snd_buf, 0, out.getLength() );
                            }
                        }
    
                        long start = System.currentTimeMillis();
                        while (timeout > 0) {
                            response.wait( timeout );
    
                            /* JetDirect printer can respond to regular broadcast query
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 17.4K bytes
    - Viewed (0)
  4. istioctl/pkg/authz/authz.go

    var configDumpFile string
    
    func checkCmd(ctx cli.Context) *cobra.Command {
    	cmd := &cobra.Command{
    		Use:   "check [<type>/]<name>[.<namespace>]",
    		Short: "Check AuthorizationPolicy applied in the pod.",
    		Long: `Check prints the AuthorizationPolicy applied to a pod by directly checking
    the Envoy configuration of the pod. The command is especially useful for inspecting
    the policy propagation from Istiod to Envoy and the final AuthorizationPolicy list merged
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/apiclient/dryrunclient.go

    					}
    				}
    				handled, obj, err := opts.Getter.HandleGetAction(getAction)
    
    				if opts.PrintGETAndLIST {
    					// Print the marshalled object format with one tab indentation
    					objBytes, err := opts.MarshalFunc(obj, action.GetResource().GroupVersion())
    					if err == nil {
    						fmt.Println("[dryrun] Returning faked GET response:")
    						PrintBytesWithLinePrefix(opts.Writer, objBytes, "\t")
    					}
    				}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 09:49:59 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/initialization/CalculateTaskGraphBuildOperationIntegrationTest.groovy

                    @InputArtifact
                    abstract Provider<FileSystemLocation> getInputArtifact()
    
                    @Override
                    void transform(TransformOutputs outputs) {
                        println "Transforming printed to System.out"
                        outputs.file(inputArtifact)
                    }
                }
            """
            file('src/main/java/artifact/transform/sample/App.java') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/process/internal/DefaultExecHandleSpec.groovy

            execHandle.start()
            def result = execHandle.waitForFinish()
    
            then:
            result.exitValue != 0
            execHandle.state == ExecHandleState.ABORTED
        }
    
        static class Prints implements Callable, Serializable {
    
            String message
    
            Object call() {
                return message
            }
        }
    
        private DefaultExecHandleBuilder handle() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 03:44:52 UTC 2021
    - 14.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/dumper.go

    				if first {
    					p.printf("\n")
    					first = false
    				}
    				p.printf("%s: ", name)
    				p.dump(x.Field(i), nil)
    				p.printf("\n")
    			}
    		}
    
    		p.indent--
    		p.printf("}")
    
    	default:
    		switch x := x.Interface().(type) {
    		case string:
    			// print strings in quotes
    			p.printf("%q", x)
    		default:
    			p.printf("%v", x)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 08 17:32:14 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  9. src/go/printer/testdata/comments.input

    }
    
    
    func _() {
    // this comment should be properly indented
    }
    
    
    func _(x int) int {
    	if x < 0 {  // the tab printed before this comment's // must not affect the remaining lines
    		return -x  // this statement should be properly indented
    	}
    	if x < 0 {  /* the tab printed before this comment's /* must not affect the remaining lines */
    		return -x  // this statement should be properly indented
    	}
    	return x
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/upgrade/health.go

    // - (if static pod-hosted) that all required Static Pod manifests exist on disk
    func CheckClusterHealth(client clientset.Interface, cfg *kubeadmapi.ClusterConfiguration, ignoreChecksErrors sets.Set[string], printer output.Printer) error {
    	_, _ = printer.Println("[upgrade] Running cluster health checks")
    
    	healthChecks := []preflight.Checker{
    		&healthCheck{
    			name:   "CreateJob",
    			client: client,
    			cfg:    cfg,
    			f:      createJob,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:18:02 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top