Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 157 for cheese (0.09 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ProjectExtensions.kt

     */
    fun Project.buildscript(action: ScriptHandlerScope.() -> Unit): Unit =
        ScriptHandlerScopeInternal(project, buildscript).action()
    
    
    /**
     * Sets the default tasks of this project. These are used when no tasks names are provided when
     * starting the build.
     */
    @Suppress("nothing_to_inline")
    inline fun Project.defaultTasks(vararg tasks: Task) {
        defaultTasks(*tasks.map { it.name }.toTypedArray())
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ResolveState.java

            // TODO #24641: Why are the numbers and operations here the way they are?
            //  Are they up-to-date? We should be able to test if these values are still optimal.
            int estimate = (int) (512 * Math.log(numDependencies));
            return Math.max(10, estimate);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/container_manager_linux.go

    	}
    
    	// on systemd, every pid is in a unified cgroup hierarchy (name=systemd as seen in systemd-cgls)
    	// cpu and memory accounting is off by default, users may choose to enable it per unit or globally.
    	// users could enable CPU and memory accounting globally via /etc/systemd/system.conf (DefaultCPUAccounting=true DefaultMemoryAccounting=true).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  4. cmd/utils.go

    	}
    	_, err = dexClient.Do(req)
    	// fmt.Printf("Do: %#v %#v\n", resp, err)
    	if err != nil {
    		return "", fmt.Errorf("auth url request err: %v", err)
    	}
    
    	// Modify u to choose the ldap option
    	u.Path += "/ldap"
    	// fmt.Println(u)
    
    	// Pick the LDAP login option. This would return a form page after
    	// following some redirects. `lastReq` would be the URL of the form
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  5. pkg/config/model.go

    	UID string `json:"uid,omitempty"`
    
    	// Name is a unique immutable identifier in a namespace
    	Name string `json:"name,omitempty"`
    
    	// Namespace defines the space for names (optional for some types),
    	// applications may choose to use namespaces for a variety of purposes
    	// (security domains, fault domains, organizational domains)
    	Namespace string `json:"namespace,omitempty"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/LocalFileDependencyBackedArtifactSetCodec.kt

        dependencyMetadata,
        componentFilter,
        variantSelector,
        artifactTypeRegistry,
        calculatedValueContainerFactory,
        allowNoMatchingVariants
    ) {
        // These attributes are ignored by the fixed artifact variant selectors
        override fun getRequestAttributes(): ImmutableAttributes = ImmutableAttributes.EMPTY
    }
    
    
    private
    class RecordingVariantSet(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. src/runtime/debug/garbage.go

    // environment variable is set, in which case it provides the initial
    // setting. GOMEMLIMIT is a numeric value in bytes with an optional
    // unit suffix. The supported suffixes include B, KiB, MiB, GiB, and
    // TiB. These suffixes represent quantities of bytes as defined by
    // the IEC 80000-13 standard. That is, they are based on powers of
    // two: KiB means 2^10 bytes, MiB means 2^20 bytes, and so on.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. pkg/controller/cronjob/utils.go

    	}
    	// this logic used for calculating number of missed schedules does a rough
    	// approximation, by calculating a diff between two schedules (t1 and t2),
    	// and counting how many of these will fit in between last schedule and now
    	timeElapsed := int64(now.Sub(t1).Seconds())
    	numberOfMissedSchedules := (timeElapsed / timeBetweenTwoSchedules) + 1
    
    	var mostRecentTime time.Time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. tensorflow/c/eager/c_api.cc

        return status.status;
      }
    
      absl::StatusOr<bool> ShallPinToThisDevice(
          const ImmediateExecutionOperation* op) override {
        TF_Status status;
        // Let this custom device choose the device to pin this op on if it
        // implements the pinning function.
        if (device_.shall_pin_to_this_device != nullptr) {
          return device_.shall_pin_to_this_device(tensorflow::wrap(op), &status);
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 08:11:23 UTC 2024
    - 44K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/buildid.go

    	// Replace with new content-based ID.
    	a.buildID = newID
    	if a.json != nil {
    		a.json.BuildID = a.buildID
    	}
    	if len(matches) == 0 {
    		// Assume the user specified -buildid= to override what we were going to choose.
    		return nil
    	}
    
    	if rewrite {
    		w, err := os.OpenFile(target, os.O_RDWR, 0)
    		if err != nil {
    			return err
    		}
    		err = buildid.Rewrite(w, matches, newID)
    		if err != nil {
    			w.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top