Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 491 for Generating (0.21 sec)

  1. hack/update-codegen.sh

                | sed 's|^|k8s.io/kubernetes/|;s|k8s.io/kubernetes/staging/src/||' \
                | sort -u)
    
        kube::log::status "Generating protobufs for ${#apis[@]} targets"
        if [[ "${DBG_CODEGEN}" == 1 ]]; then
            kube::log::status "DBG: generating protobufs for:"
            for dir in "${apis[@]}"; do
                kube::log::status "DBG:     $dir"
            done
        fi
    
        git_find -z \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/impldeps/GradleImplDepsLoggingIntegrationTest.groovy

    @Requires(IntegTestPreconditions.NotEmbeddedExecutor) // Gradle API and TestKit JARs are not generated when running embedded
    class GradleImplDepsLoggingIntegrationTest extends BaseGradleImplDepsIntegrationTest {
    
        def "Generating Gradle API jar is logged with rich console"() {
            given:
            executer.withTestConsoleAttached()
            executer.withConsole(ConsoleOutput.Rich)
            buildFile << """
                configurations {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. tools/certs/README.md

    # Generating Certificates for Bootstrapping Multicluster / Mesh Expansion Chain of Trust
    
    The directory contains two Makefiles for generating new root, intermediate certificates and workload certificates:
    - `Makefile.k8s.mk`: Creates certificates based on a root-ca from a k8s cluster. The current context in the default
    `kubeconfig` is used for accessing the cluster.
    - `Makefile.selfsigned.mk`: Creates certificates based on a generated self-signed root.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 17 20:29:15 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  4. buildscripts/gen-ldflags.go

    	if commitUnix, err = exec.Command(cmdName, cmdArgs...).Output(); err != nil {
    		fmt.Fprintln(os.Stderr, "Error generating git commit-time: ", err)
    		os.Exit(1)
    	}
    
    	t, err := time.Parse(time.RFC3339, strings.TrimSpace(string(commitUnix)))
    	if err != nil {
    		fmt.Fprintln(os.Stderr, "Error generating git commit-time: ", err)
    		os.Exit(1)
    	}
    
    	return t.UTC()
    }
    
    func main() {
    	var version string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 16 23:10:48 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/bestPractices/taskDefinition/tests/taskDefinition.out

    Generating all documentation......
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 32 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/ear/earWithWar/kotlin/war/src/main/java/org/gradle/sample/SimpleGreeter.java

    package org.gradle.sample;
    
    import org.apache.log4j.LogManager;
    
    public class SimpleGreeter {
        public String getGreeting() throws Exception {
            LogManager.getRootLogger().info("generating greeting.");
            return "Hello world!";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 249 bytes
    - Viewed (0)
  7. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitInteractiveIntegrationTest.groovy

            ConcurrentTestUtil.poll(60) {
                assert handle.standardOutput.contains(incubatingPrompt)
            }
            handle.stdinPipe.write(("no" + TextUtil.platformLineSeparator).bytes)
    
            // after generating the project, we suggest the user reads some documentation
            ConcurrentTestUtil.poll(60) {
                assert handle.standardOutput.contains(documentationRegistry.getSampleForMessage())
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. releasenotes/notes/42513.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 23 02:51:23 UTC 2022
    - 307 bytes
    - Viewed (0)
  9. pkg/printers/tablegenerator_test.go

    	if err != nil {
    		t.Fatalf("An error occurred generating the table for custom type: %#v", err)
    	}
    
    	expectedTable := &metav1.Table{
    		ColumnDefinitions: []metav1.TableColumnDefinition{{Name: "Data"}},
    		Rows:              []metav1.TableRow{{Cells: []interface{}{"test object"}}},
    	}
    	if !reflect.DeepEqual(expectedTable, table) {
    		t.Errorf("Error generating table from custom type. Expected (%#v), got (%#v)", expectedTable, table)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 23 15:26:17 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  10. requirements.txt

    -e .[all]
    -r requirements-tests.txt
    -r requirements-docs.txt
    pre-commit >=2.17.0,<4.0.0
    # For generating screenshots
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 23:48:42 UTC 2024
    - 128 bytes
    - Viewed (0)
Back to top