Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 590 for cheese (0.12 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecDebugIntegrationTest.groovy

            handle.waitForFinish()
    
            where:
            taskName << ['runJavaExec', 'runExecOperationsJavaExec', 'test']
        }
    
        /** To test attaching the debugger via a non-loopback network interface, we need to choose an IP address of such an interface. */
        private static final String nonLoopbackAddress() {
            println("Looking at network interfaces")
            def address = Collections.list(NetworkInterface.getNetworkInterfaces())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_image.go

    	allImages, err := m.imageService.ListImages(ctx, nil)
    	if err != nil {
    		klog.ErrorS(err, "Failed to list images")
    		return nil, err
    	}
    
    	for _, img := range allImages {
    		// Container runtimes may choose not to implement changes needed for KEP 4216. If
    		// the changes are not implemented by a container runtime, the exisiting behavior
    		// of not populating the runtimeHandler CRI field in ImageSpec struct is preserved.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/layout.go

    	// the depth-first topology sorting algorithm.
    	var zerodegree []ID
    	// LIFO queue. Track the successor blocks of the scheduled block so that when we
    	// encounter loops, we choose to schedule the successor block of the most recently
    	// scheduled block.
    	var succs []ID
    	exit := f.newSparseSet(f.NumBlocks()) // exit blocks
    	defer f.retSparseSet(exit)
    
    	// Populate idToBlock and find exit blocks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 5K bytes
    - Viewed (0)
  4. tests/fuzz/README.md

    These should be written alongside standard test packages.
    Currently, these cannot be in `<pkg>_test` packages; instead move them to a file under `<pkg>`.
    
    Fuzz jobs will be run in unit test mode automatically (i.e. run once) and as part of OSS-fuzz.
    
    ## Local testing
    
    To run the fuzzers, follow these steps:
    
    ```bash
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 23 16:45:44 UTC 2022
    - 994 bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java

         * (if applicable). This process will essentially remove duplicate repositories by merging them into one equivalent
         * repository. It is worth to point out that merging does not simply choose one of the input repositories and
         * discards the others but actually combines their possibly different policies.
         *
         * @param repositories The original repositories, may be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. releasenotes/README.md

    ## docs
    
    The `docs` field should be used to list related documentation. These will be turned into links and appended to the note alongside the issues. Quotes are **required** for docs entries or you may see YAML errors such as `did not find expected alphabetic or numeric character`.
    
    ### Release Notes
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 09 20:31:49 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/readme-templates/common-body.adoc.template

    When prompted, select the `${componentTypeIndex.raw}: ${componentType.raw}` project type and `${languageIndex.raw}: ${language.raw}` as implementation language.
    Next you can choose the DSL for writing buildscripts -  `1  : Groovy` or `2: Kotlin`.
    For the other questions, press enter to use the default values.
    
    The output will look like this:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. test/fixedbugs/issue11326.go

    	// binary exponent, so these constants cannot be represented anymore
    	// internally. However, the language spec does not preclude other
    	// implementations from handling these. Don't check the error.
    	// var _ = 1e2147483647 // "constant too large"
    	// var _ = 1e646456993  // "constant too large"
    
    	// Any implementation must be able to handle these constants at
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 23 05:11:09 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  9. .editorconfig

    # EditorConfig helps developers define and maintain consistent
    # coding styles between different editors and IDEs
    # editorconfig.org
    
    root = true
    
    [*]
    # Change these settings to your own preference
    indent_style = space
    indent_size = 4
    
    # We recommend you to keep these unchanged
    end_of_line = lf
    charset = utf-8
    trim_trailing_whitespace = true
    insert_final_newline = true
    
    # Markdown files sometimes need trailing whitespaces.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 11:48:19 UTC 2023
    - 643 bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/envoyfilter/envoyfilter.go

    		// is set and the priority is not set and a relative operator is used.  Issue a warning
    		message := msg.NewEnvoyFilterUsesRelativeOperation(r)
    
    		// if the proxyVersion is set choose that error message over the relative operation message as
    		// the proxyVersion error message also indicates that the proxyVersion is set
    		count := 0
    
    		for _, name := range patchFilterNames {
    			if instanceName == name {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top