Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 115 for Enforce (0.12 sec)

  1. tensorflow/compiler/mlir/lite/utils/string_utils.h

      // inception, sizes were represented using 32bit which forced an implicit cap
      // on the size of the buffer. When this was refactored to use size_t (which
      // could be 64bit) we enforce that the buffer remains at most 32bit length to
      // avoid a change in behavior.
      const size_t max_length_;
    };
    }  // namespace mlir::TFL
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/release/notes-template.md

    Include only their name, impactful features should be called out separately below.
     [Some person](https://github.com/some-person)
    
     THIS LIST SHOULD BE ALPHABETIZED BY [PERSON NAME] - the docs:updateContributorsInReleaseNotes task will enforce this ordering, which is case-insensitive.
    -->
    
    We would like to thank the following community members for their contributions to this release of Gradle:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 14:04:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/release/notes.md

    Include only their name, impactful features should be called out separately below.
     [Some person](https://github.com/some-person)
    
     THIS LIST SHOULD BE ALPHABETIZED BY [PERSON NAME] - the docs:updateContributorsInReleaseNotes task will enforce this ordering, which is case-insensitive.
    -->
    We would like to thank the following community members for their contributions to this release of Gradle:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. pom.xml

                  </rules>
                  <fail>true</fail>
                </configuration>
              </execution>
              <execution>
                <id>enforce-bytecode-version</id>
                <goals>
                  <goal>enforce</goal>
                </goals>
                <configuration>
                  <rules>
                    <requireJavaVersion>
                      <version>[17,)</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    		network := a.Network(wle.Spec.Address, wle.Labels).String()
    		if wle.Spec.Network != "" {
    			network = wle.Spec.Network
    		}
    
    		// enforce traversing waypoints
    		policies = append(policies, implicitWaypointPolicies(ctx, Waypoints, waypoint, services)...)
    
    		w := &workloadapi.Workload{
    			Uid:                   a.generateWorkloadEntryUID(wle.Namespace, wle.Name),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/ProjectStateStore.kt

                return previouslyCached
            }
    
            val value = creator()
            val address = valuesStore.write(value)
            // Only return the address to enforce load-after-store behavior
            return address
        }
    
        private
        fun displayNameFor(key: K): DisplayName {
            val unitDescription = projectPathForKey(key)?.let { "for project $it" } ?: "for build"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_gc.go

    				cgc.removeOldestN(ctx, unit, len(unit)) // Remove all.
    				delete(evictUnits, key)
    			}
    		}
    	}
    
    	// Enforce max containers per evict unit.
    	if gcPolicy.MaxPerPodContainer >= 0 {
    		cgc.enforceMaxContainersPerEvictUnit(ctx, evictUnits, gcPolicy.MaxPerPodContainer)
    	}
    
    	// Enforce max total number of containers.
    	if gcPolicy.MaxContainers >= 0 && evictUnits.NumContainers() > gcPolicy.MaxContainers {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. android/pom.xml

            </excludes>
          </testResource>
        </testResources>
        <plugins>
          <plugin>
            <artifactId>maven-enforcer-plugin</artifactId>
            <executions>
              <execution>
                <id>enforce-versions</id>
                <goals>
                  <goal>enforce</goal>
                </goals>
                <configuration>
                  <rules>
                    <requireMavenVersion>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. pom.xml

            </excludes>
          </testResource>
        </testResources>
        <plugins>
          <plugin>
            <artifactId>maven-enforcer-plugin</artifactId>
            <executions>
              <execution>
                <id>enforce-versions</id>
                <goals>
                  <goal>enforce</goal>
                </goals>
                <configuration>
                  <rules>
                    <requireMavenVersion>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. cluster/images/etcd/Makefile

    MANIFEST_IMAGE := $(PUSH_REGISTRY)/etcd
    
    # Install binaries matching base distro permissions
    BIN_INSTALL := install -m 0555
    
    # Hosts running SELinux need :z added to volume mounts
    SELINUX_ENABLED := $(shell cat /sys/fs/selinux/enforce 2> /dev/null || echo 0)
    
    ifeq ($(SELINUX_ENABLED),1)
      DOCKER_VOL_OPTS?=:z
    endif
    
    # This option is for running docker manifest command
    export DOCKER_CLI_EXPERIMENTAL := enabled
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top