Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,938 for reckon (0.28 sec)

  1. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageChecker.groovy

            def config = display(CannotWriteToDir, 'cannot_write_output', spec)
            config.description("is not writable because '${config.dir}' ${config.reason}")
                .reason("Expected '${config.problemDir}' to be a directory but it's a file")
                .solution("Make sure that the '${config.property}' is configured to a directory")
                .render()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  2. src/runtime/mpagealloc.go

    // first-fit approach.
    //
    // Each entry in the radix tree is a summary that describes three properties of
    // a particular region of the address space: the number of contiguous free pages
    // at the start and end of the region it represents, and the maximum number of
    // contiguous free pages found anywhere in that region.
    //
    // Each level of the radix tree is stored as one contiguous array, which represents
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  3. cmd/signature-v4-parser.go

    	}
    
    	cred.scope.region = credElements[1]
    	// Verify if region is valid.
    	sRegion := cred.scope.region
    	// Region is set to be empty, we use whatever was sent by the
    	// request and proceed further. This is a work-around to address
    	// an important problem for ListBuckets() getting signed with
    	// different regions.
    	if region == "" {
    		region = sRegion
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting_cleanup.cc

      auto walk_result = parent_op->walk([](Operation *op) {
        // Cleanup code in attached regions.
        for (Region &region : op->getRegions()) {
          if (!llvm::hasSingleElement(region)) return WalkResult::interrupt();
          RemovePassthroughOp(region.front());
          RemoveDeadLocalVariables(region.front());
        }
    
        LogicalResult result = success();
    
        // While condition cannot write to resource variables.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. src/cmd/trace/gen.go

    // by proc or thread.
    func emitRegion(ctx *traceContext, region *trace.UserRegionSummary) {
    	if region.Name == "" {
    		return
    	}
    	// Collect information about the region.
    	var startStack, endStack trace.Stack
    	goroutine := trace.NoGoroutine
    	startTime, endTime := ctx.startTime, ctx.endTime
    	if region.Start != nil {
    		startStack = region.Start.Stack()
    		startTime = region.Start.Time()
    		goroutine = region.Start.Goroutine()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/modelreader/api/CallInterceptionRequestReader.java

                    return request;
                }
            }
    
            class InvalidRequest implements Result {
                public final String reason;
    
                public InvalidRequest(String reason) {
                    this.reason = reason;
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. tests/utils.py

    from fastapi._compat import PYDANTIC_V2
    
    needs_py39 = pytest.mark.skipif(sys.version_info < (3, 9), reason="requires python3.9+")
    needs_py310 = pytest.mark.skipif(
        sys.version_info < (3, 10), reason="requires python3.10+"
    )
    needs_pydanticv2 = pytest.mark.skipif(not PYDANTIC_V2, reason="requires Pydantic v2")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 422 bytes
    - Viewed (0)
  8. pkg/kubelet/reason_cache_test.go

    	}
    	if !ok && found {
    		t.Fatalf("corresponding reason info not found")
    	}
    	if !found {
    		return
    	}
    	reason := result.Error
    	message := result.Message
    	if actualReason.Err != reason || actualReason.Message != message {
    		t.Errorf("expected %v %q, got %v %q", reason, message, actualReason.Err, actualReason.Message)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 03:33:06 UTC 2017
    - 2.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/model/Checksum.java

            this.reason = reason;
            this.hashCode = computeHashcode();
        }
    
        private int computeHashcode() {
            int result = kind.hashCode();
            result = 31 * result + value.hashCode();
            result = 31 * result + (alternatives != null ? alternatives.hashCode() : 0);
            result = 31 * result + (origin != null ? origin.hashCode() : 0);
            result = 31 * result + (reason != null ? reason.hashCode() : 0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/testinggoroutine/testinggoroutine.go

    		}
    		return true
    	})
    
    	// Check for t.Forbidden() calls within each region r that is a
    	// callee in some go r() or a t.Run("name", r).
    	//
    	// Also considers a special case when r is a go t.Forbidden() call.
    	for _, region := range regions {
    		ast.Inspect(region, func(n ast.Node) bool {
    			if n == region {
    				return true // always descend into the region itself.
    			} else if asyncs[n] != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top