Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 62 for line1 (0.05 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    When gradually improving your plugin or build logic to support the configuration cache it can be useful to temporarily turn problems into warnings, with no guarantee that the build will work.
    
    This can be done from the command line:
    
    ----
    ❯ gradle --configuration-cache-problems=warn
    ----
    
    or in a `gradle.properties` file:
    
    [source,properties]
    ----
    org.gradle.configuration-cache.problems=warn
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    		}
    		i := 1
    		pc, file, line, ok := runtime.Caller(i)
    		if ok {
    			name = runtime.FuncForPC(pc).Name()
    		}
    		for ok && reg.MatchString(runtime.FuncForPC(pc).Name()) {
    			i += 1
    			pc, file, line, ok = runtime.Caller(i)
    		}
    		if ok {
    			if ZosTracefile == nil {
    				ZosConsolePrintf("From %s:%d\n", file, line)
    				ZosConsolePrintf("%s: %s (errno2=0x%x)\n", name, e.Error(), e2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. tensorflow/c/c_api_function_test.cc

    // DataType value of DT_INVALID signifies that we don't want to
    // check the data type.
    typedef std::pair<string, DataType> IOSpec;
    
    const char* kFeedStackToString = "File \"feed.cc\", line 10, in alpha";
    const char* kNegStackToString = "File \"neg.cc\", line 15, in beta";
    
    std::vector<IOSpec> M(const std::initializer_list<string>& names) {
      std::vector<IOSpec> v;
      for (const string& name : names) {
        v.push_back(IOSpec(name, DT_INVALID));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	default:
    		logger.V(5).Info("PodSchedulingContext object deleted")
    	}
    }
    
    // statusUnschedulable ensures that there is a log message associated with the
    // line where the status originated.
    func statusUnschedulable(logger klog.Logger, reason string, kv ...interface{}) *framework.Status {
    	if loggerV := logger.V(5); loggerV.Enabled() {
    		helper, loggerV := loggerV.WithCallStackHelper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/CacheBuilder.java

     *             return createExpensiveGraph(key);
     *           }
     *         });
     * }</pre>
     *
     * <p>Or equivalently,
     *
     * <pre>{@code
     * // In real life this would come from a command-line flag or config file
     * String spec = "maximumSize=10000,expireAfterWrite=10m";
     *
     * LoadingCache<Key, Graph> graphs = CacheBuilder.from(spec)
     *     .removalListener(MY_LISTENER)
     *     .build(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    // information on the implementation: https://github.com/emicklei/go-restful/pull/215
    //
    // TODOs are ignored from the parser (e.g. TODO(andronat):... || TODO:...) if and only if
    // they are on one line! For multiple line or blocks that you want to ignore use ---.
    // Any context after a --- is ignored.
    //
    // Those methods can be generated by using hack/update-codegen.sh
    
    // AUTO-GENERATED FUNCTIONS START HERE. DO NOT EDIT.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

                    // two.a expects "one" to be defined
                    from('src/two/two.a')
                    into('dest')
                    // expect "two" to be defined as well
                    filter { line -> '\$two ' + line }
                    expand("notused": "notused")
                }
            """
            when:
            fails 'copy'
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  8. src/bytes/bytes_test.go

    	{" Aaa Aaa Aaa ", " Aaa Aaa Aaa "},
    	{"123a456", "123a456"},
    	{"double-blind", "Double-Blind"},
    	{"ÿøû", "Ÿøû"},
    	{"with_underscore", "With_underscore"},
    	{"unicode \xe2\x80\xa8 line separator", "Unicode \xe2\x80\xa8 Line Separator"},
    }
    
    func TestTitle(t *testing.T) {
    	for _, tt := range TitleTests {
    		if s := string(Title([]byte(tt.in))); s != tt.out {
    			t.Errorf("Title(%q) = %q, want %q", tt.in, s, tt.out)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/buildlist.go

    			// roots as if they are imported by the main module (as in 'go get').
    
    		case pkg.flags.has(pkgIsRoot):
    			// pkg is a root of the package-import graph. (Generally this means that
    			// it matches a command-line argument.) We want future invocations of the
    			// 'go' command — such as 'go test' on the same package — to continue to
    			// use the same versions of its dependencies that we are using right now.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. src/internal/trace/order.go

    	// - Block or destroy of the current goroutine.
    	// - Start executing the next goroutine.
    	//
    	// Because it acts like a GoStart for the next goroutine, we can
    	// only advance it if the sequence numbers line up.
    	//
    	// The current goroutine on the thread must be actively running.
    	if err := validateCtx(curCtx, event.UserGoReqs); err != nil {
    		return curCtx, false, err
    	}
    	curGState, ok := o.gStates[curCtx.G]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
Back to top