Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 755 for told (0.07 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProjectStateRegistry.java

                if (currentLocks.contains(projectLock) || currentLocks.contains(allProjectsLock)) {
                    // if we already hold the project lock for this project
                    if (currentLocks.size() == 1) {
                        // the lock for this project is the only lock we hold, can run the function
                        return function.apply(getMutableModel());
                    } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 21K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    	// successive non-starters appended to the previous, possibly causing an
    	// overflow. We will therefore consider any rune with a non-zero nLead to
    	// be a non-starter. Note that it always hold that if nLead > 0 then
    	// nLead == nTrail.
    	if n == 0 {
    		*ss = streamSafe(p.nTrailingNonStarters())
    		return ssStarter
    	}
    	return ssSuccess
    }
    
    // backwards is used for checking for overflow and segment starts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. .teamcity/performance-test-durations.json

      "durations" : [ {
        "testProject" : "largeEmptyMultiProjectDeclarativeDsl",
        "linux" : 8
      } ]
    }, {
      "scenario" : "org.gradle.performance.experiment.declarativedsl.DeclarativeDslFirstUsePerformanceTest.cold daemon",
      "durations" : [ {
        "testProject" : "largeEmptyMultiProjectDeclarativeDsl",
        "linux" : 8
      } ]
    }, {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:30:45 UTC 2024
    - 27.9K bytes
    - Viewed (1)
  4. src/cmd/compile/internal/ssa/sccp.go

    		OpNot:
    		lt1 := t.getLatticeCell(val.Args[0])
    
    		if lt1.tag == constant {
    			// here we take a shortcut by reusing generic rules to fold constants
    			t.latticeCells[val] = computeLattice(t.f, val, lt1.val)
    		} else {
    			t.latticeCells[val] = lattice{lt1.tag, nil}
    		}
    	// fold 2-input operations
    	case
    		// add
    		OpAdd64, OpAdd32, OpAdd16, OpAdd8,
    		OpAdd32F, OpAdd64F,
    		// sub
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/third_party/forked/golang/json/fields.go

    	fieldCache.RLock()
    	f := fieldCache.m[t]
    	fieldCache.RUnlock()
    	if f != nil {
    		return f
    	}
    
    	// Compute fields without lock.
    	// Might duplicate effort but won't hold other computations back.
    	f = typeFields(t)
    	if f == nil {
    		f = []field{}
    	}
    
    	fieldCache.Lock()
    	if fieldCache.m == nil {
    		fieldCache.m = map[reflect.Type][]field{}
    	}
    	fieldCache.m[t] = f
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 13.1K bytes
    - Viewed (0)
  6. src/image/jpeg/writer.go

    			0xf9, 0xfa,
    		},
    	},
    }
    
    // huffmanLUT is a compiled look-up table representation of a huffmanSpec.
    // Each value maps to a uint32 of which the 8 most significant bits hold the
    // codeword size in bits and the 24 least significant bits hold the codeword.
    // The maximum codeword size is 16 bits.
    type huffmanLUT []uint32
    
    func (h *huffmanLUT) init(s huffmanSpec) {
    	maxValue := 0
    	for _, v := range s.value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/fold_broadcast_pass.cc

          return rewriter.notifyMatchFailure(
              binary_op, "Operands should have exactly one BroadcastInDim op.");
        }
        // When the operand other than the broadcast op is not a const op, we
        // should not fold broadcast op.
        auto binary_op_const_operand =
            (lhs_bcast_op ? rhs : lhs).template getDefiningOp<mhlo::ConstantOp>();
        if (!binary_op_const_operand) return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. src/main/webapp/js/admin/adminlte.min.js

    eRemember&&(localStorage.getItem("remember"+i)==r?this._options.noTransitionAfterReload?t("body").addClass("hold-transition").addClass(r).delay(50).queue((function(){t(this).removeClass("hold-transition"),t(this).dequeue()})):t("body").addClass(r):this._options.noTransitionAfterReload?t("body").addClass("hold-transition").removeClass(r).delay(50).queue((function(){t(this).removeClass("hold-transition"),t(this).dequeue()})):t("body").removeClass(r))},n._init=function(){var e=this;this.remember(),...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 23.7K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/grappler/grappler.cc

        if ((p + s.size()) > (static_cast<char*>(storage) + storage_size)) {
          tsl::Set_TF_Status_from_Status(
              status,
              absl::InvalidArgumentError(
                  "Not enough storage to hold the requested list of nodes"));
          return;
        }
        memcpy(values[index], s.data(), s.size());
        p += s.size();
        index++;
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 15K bytes
    - Viewed (0)
  10. .teamcity/performance-tests-ci.json

          "coverage" : {
            "per_day" : [ "linux", "macOs", "windows" ]
          }
        } ]
      }, {
        "testId" : "org.gradle.performance.experiment.declarativedsl.DeclarativeDslFirstUsePerformanceTest.cold daemon",
        "groups" : [ {
          "testProject" : "largeEmptyMultiProjectDeclarativeDsl",
          "coverage" : {
            "per_day" : [ "linux", "macOs", "windows" ]
          }
        } ]
      }, {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:12 UTC 2024
    - 36.4K bytes
    - Viewed (0)
Back to top