Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 95 for printsp (0.15 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

                }
    
                configurations.conf.incoming.afterResolve {
                    // afterResolve will trigger the problem when reading
                    it.resolutionResult.allComponents {
                        println "Success for \${it.id}"
                    }
                }
            """
    
            when:
            repositoryInteractions {
                'org:test' {
                    expectVersionListing()
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    You can discover what extensions and conventions are available either by looking at the documentation for the applied plugins or by running `gradle kotlinDslAccessorsReport`, which prints the Kotlin code necessary to access the model elements contributed by all the applied plugins.
    The report provides both names and types.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    For example, given a piece of code in either settings or build file:
    ```
    if (System.getProperty("profile") == "custom") {
        println("custom profile")
    } else {
        println("default profile")
    }
    ```
    You can pass the `profile` system property to Gradle using `gradle -Dprofile=custom` to execute the code in the `custom` profile branch.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    but changes the default to select patch releases.
    
    When the -t and -u flags are used together, get will update
    test dependencies as well.
    
    The -x flag prints commands as they are executed. This is useful for
    debugging version control commands when a module is downloaded directly
    from a repository.
    
    For more about build flags, see 'go help build'.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        }
    
        return failure();
      }
    };
    
    // Prints a summary about the quantization results.
    class QuantizationSummary {
     public:
      explicit QuantizationSummary(ModuleOp module)
          : module_(module), symbol_table_(module) {}
    
      void Print() {
        llvm::StringMap<OpCountItem> func_count_map;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  6. src/cmd/internal/testdir/testdir_test.go

    )
    
    var types2Failures32Bit = setOf(
    	"printbig.go",             // large untyped int passed to print (32-bit)
    	"fixedbugs/bug114.go",     // large untyped int passed to println (32-bit)
    	"fixedbugs/issue23305.go", // large untyped int passed to println (32-bit)
    )
    
    // In all of these cases, the 1.17 compiler reports reasonable errors, but either the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. hack/local-up-cluster.sh

      if [[ "${PRESERVE_ETCD}" == "false" ]]; then
        [[ -n "${ETCD_DIR-}" ]] && kube::etcd::clean_etcd_dir
      fi
    
      exit 0
    }
    
    # Check if all processes are still running. Prints a warning once each time
    # a process dies unexpectedly.
    function healthcheck {
      if [[ -n "${APISERVER_PID-}" ]] && ! sudo kill -0 "${APISERVER_PID}" 2>/dev/null; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. src/runtime/malloc.go

    		throw("failed to get system page size")
    	}
    	if physPageSize > maxPhysPageSize {
    		print("system page size (", physPageSize, ") is larger than maximum page size (", maxPhysPageSize, ")\n")
    		throw("bad system page size")
    	}
    	if physPageSize < minPhysPageSize {
    		print("system page size (", physPageSize, ") is smaller than minimum page size (", minPhysPageSize, ")\n")
    		throw("bad system page size")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewrite.go

    //
    //	noteRule("note to self: rule of interest matched")
    //
    // and that message will print when the rule matches.
    func noteRule(s string) bool {
    	fmt.Println(s)
    	return true
    }
    
    // countRule increments Func.ruleMatches[key].
    // If Func.ruleMatches is non-nil at the end
    // of compilation, it will be printed to stdout.
    // This is intended to make it easier to find which functions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         *       //we can refer to the ant property created by checksum task:
         *       println "The checksum is: " + checksumOut
         *     }
         *
         *     //we can refer to the ant property later as well:
         *     println "I just love to print checksums: " + ant.checksumOut
         *   }
         * }
         * </pre>
         *
         * Consider following example of ant target:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top