Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 95 for printsp (0.27 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    === Potential breaking changes
    
    ==== Kotlin DSL scripts emit compilation warnings
    
    Compilation warnings from Kotlin DSL scripts are printed to the console output.
    For example, the use of deprecated APIs in Kotlin DSL will emit warnings each time the script is compiled.
    
    This is a potentially breaking change if you are consuming the console output of Gradle builds.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/deadness_analysis.cc

    //
    //
    // DEALING WITH CYCLES
    // -------------------
    //
    // We map Merge nodes that are the target of a backedge to AndRecurrence
    // instances.  An AndRecurrence with start() = S and step() = X, printed as
    // {S,&,X}, *roughly* represents the infinite list of predicates
    // [S,S&X,S&X&X,S&X&X, ...].  So {S,&,X} can be used to represent the predicate
    // for Merge in a graph like:
    //
    //     Init
    //       |
    //       v
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

    }
    
    dependencies {
        implementation (group: 'org', name: 'bar', version:'1.0')
        implementation (group: 'org', name: 'baz', version:'1.0')
    }
    
    task resolve {
        doLast {
            println configurations.compile.files
        }
    }
    """
    
            def resolve = new ResolveTestFixture(buildFile).expectDefaultConfiguration("runtime")
            resolve.prepare()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            buildFile << """
                dependencies {
                    implementation "org:foo:1.0"
                }
    
                gradle.buildFinished {
                   allprojects {
                      println configurations.compileClasspath.files
                   }
                }
            """
    
            when:
            serveValidKey()
            fails ":help"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	if table.ResourceVersion != "11" || table.Continue != "continuetoken" {
    		t.Errorf("printer lost list meta: %#v", table.ListMeta)
    	}
    	if len(table.Rows) != len(items) {
    		t.Errorf("unexpected number of rows: %v", len(table.Rows))
    	}
    	columns := table.ColumnDefinitions
    	if len(columns) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  6. cmd/iam.go

    				authZLogIf(ctx, errMsg, logger.WarningKind)
    			}
    		}
    		sys.rolesMap[arn] = rolePolicies
    	}
    }
    
    // Prints IAM role ARNs.
    func (sys *IAMSys) printIAMRoles() {
    	if len(sys.rolesMap) == 0 {
    		return
    	}
    	var arns []string
    	for arn := range sys.rolesMap {
    		arns = append(arns, arn.String())
    	}
    	sort.Strings(arns)
    	msgs := make([]string, 0, len(arns))
    	for _, arn := range arns {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/debug.go

    type RegisterSet uint64
    
    // logf prints debug-specific logging to stdout (always stdout) if the
    // current function is tagged by GOSSAFUNC (for ssa output directed
    // either to stdout or html).
    func (s *debugState) logf(msg string, args ...interface{}) {
    	if s.f.PrintOrHtmlSSA {
    		fmt.Printf(msg, args...)
    	}
    }
    
    type debugState struct {
    	// See FuncDebug.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.31.md

    - Pause: add a -v flag to the Windows variant of the pause binary, which prints the version of pause and exits. The Linux pause already has the flag. ([#125067](https://github.com/kubernetes/kubernetes/pull/125067), [@neolit123](https://github.com/neolit123)) [SIG Windows]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //  Synopsys:
    //    GTEST_CHECK_(boolean_condition);
    //     or
    //    GTEST_CHECK_(boolean_condition) << "Additional message";
    //
    //    This checks the condition and if the condition is not satisfied
    //    it prints message about the condition violation, including the
    //    condition itself, plus additional message streamed into it, if any,
    //    and then it aborts the program. It aborts the program irrespective of
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //  Synopsys:
    //    GTEST_CHECK_(boolean_condition);
    //     or
    //    GTEST_CHECK_(boolean_condition) << "Additional message";
    //
    //    This checks the condition and if the condition is not satisfied
    //    it prints message about the condition violation, including the
    //    condition itself, plus additional message streamed into it, if any,
    //    and then it aborts the program. It aborts the program irrespective of
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
Back to top