Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,605 for onOutput (0.17 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/MissingTaskDependenciesIntegrationTest.groovy

            "same location"        | null           | "file"     | "output.txt"               | "output.txt"
            "consuming ancestor"   | null           | "file"     | "build/dir/sub/output.txt" | "build/dir"
            "consuming descendant" | 'build/dir'    | "dir"      | "build/dir/sub/output.txt" | "build/dir/sub/output.txt"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 08:14:44 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. istioctl/pkg/workload/workload_test.go

    	}
    
    	fErr := cmd.Execute()
    	output := out.String()
    
    	if c.expectedException {
    		if fErr == nil {
    			t.Fatalf("Wanted an exception, "+
    				"didn't get one, output was %q", output)
    		}
    	} else {
    		if fErr != nil {
    			t.Fatalf("Unwanted exception: %v", fErr)
    		}
    	}
    
    	if c.expectedOutput != "" && c.expectedOutput != output {
    		assert.Equal(t, c.expectedOutput, output)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr_test.go

    			continue
    		}
    		if value.Type == Int && test.output.IntVal != value.IntVal {
    			t.Errorf("expected int value %d (%v), but got %d (%v)", test.output.IntVal, test.output, value.IntVal, value)
    			continue
    		}
    		if value.Type == String && test.output.StrVal != value.StrVal {
    			t.Errorf("expected string value %q (%v), but got %q (%v)", test.output.StrVal, test.output, value.StrVal, value)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheProblemsFixture.groovy

            if (spec.hasProblems()) {
                assertHasConsoleSummary(result.output, spec)
                assertProblemsHtmlReport(result.output, rootDir, spec)
            } else {
                assertNoProblemsSummary(result.output)
            }
            // TODO:bamboo avoid reading jsModel twice when asserting on problems AND inputs
            assertInputs(result.output, rootDir, spec.inputs)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  5. istioctl/pkg/proxyconfig/proxyconfig.go

    				return configWriter.PrintClusterDump(filter, outputFormat)
    			default:
    				return fmt.Errorf("output format %q not supported", outputFormat)
    			}
    		},
    		ValidArgsFunction: completion.ValidPodsNameArgs(ctx),
    	}
    
    	clusterConfigCmd.PersistentFlags().StringVarP(&outputFormat, "output", "o", summaryOutput, "Output format: one of json|yaml|short")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTestKitIntegrationTest.groovy

            }
            def result = runner.build()
    
            then:
            def output = result.output
            problems.assertResultHasProblems(OutputScrapingExecutionResult.from(output, "")) {
                withInput("Plugin class 'MyPlugin': system property 'my.property'")
                ignoringUnexpectedInputs()
            }
            output.contains("Configuration cache entry stored.")
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentModelIntegrationTest.groovy

            succeeds 'tasks'
        }
    
        def "component sources and binaries containers are visible in model report"() {
            when:
            succeeds "model"
    
            then:
            ModelReportOutput.from(output).hasNodeStructure {
                components {
                    main {
                        binaries()
                        sources()
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalInputsIntegrationTest.groovy

            assert file("input/${toBeRemovedPath}").delete()
            run("copy")
            then:
            executedAndNotSkipped(":copy")
            file("build/output/${normalizedPaths.modified}").text == "modified"
            !file("build/output/${normalizedPaths.removed}").exists()
            file("build/output/${normalizedPaths.added}").text == "other input"
    
            where:
            pathSensitivity           | normalizedPaths
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 12:52:29 UTC 2022
    - 27.8K bytes
    - Viewed (0)
  9. pkg/credentialprovider/config_test.go

    				Password: "baz",
    				Email:    "******@****.***",
    			},
    		}),
    	}
    
    	var output DockerConfigJSON
    	err := json.Unmarshal(input, &output)
    	if err != nil {
    		t.Errorf("Received unexpected error: %v", err)
    	}
    
    	if !reflect.DeepEqual(expect, output) {
    		t.Errorf("Received unexpected output. Expected %#v, got %#v", expect, output)
    	}
    }
    
    func TestDockerConfigJSONDecode(t *testing.T) {
    	// Fake values for testing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 19 15:11:57 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  10. src/go/printer/printer.go

    			}
    			return
    		}
    
    		p.output = append(p.output, tabwriter.Escape) // protect '\n' in //line from tabwriter interpretation
    		p.output = append(p.output, fmt.Sprintf("//line %s:%d\n", pos.Filename, pos.Line)...)
    		p.output = append(p.output, tabwriter.Escape)
    		// p.out must match the //line directive
    		p.out.Filename = pos.Filename
    		p.out.Line = pos.Line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
Back to top