Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,442 for bitname (0.32 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/MerkleDirectorySnapshotBuilder.java

                }
                if (sortingRequired) {
                    children.sort(FileSystemLocationSnapshot.BY_NAME);
                }
                Hasher hasher = Hashing.newHasher();
                hasher.putHash(DIR_SIGNATURE);
                for (FileSystemLocationSnapshot child : children) {
                    hasher.putString(child.getName());
                    hasher.putHash(child.getHash());
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. pkg/registry/resource/resourceclass/storage/storage_test.go

    	resourceClass.ObjectMeta = metav1.ObjectMeta{GenerateName: "foo"}
    	test.TestCreate(
    		// valid
    		resourceClass,
    		// invalid
    		&resource.ResourceClass{
    			ObjectMeta: metav1.ObjectMeta{Name: "*BadName!"},
    		},
    	)
    }
    
    func TestUpdate(t *testing.T) {
    	storage, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.Store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.Store).ClusterScope()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 19:08:24 UTC 2022
    - 4K bytes
    - Viewed (0)
  3. pkg/registry/storage/csinode/storage/storage_test.go

    	csiNode := validNewCSINode("foo")
    	csiNode.ObjectMeta = metav1.ObjectMeta{GenerateName: "foo"}
    	test.TestCreate(
    		// valid
    		csiNode,
    		// invalid
    		&storageapi.CSINode{
    			ObjectMeta: metav1.ObjectMeta{Name: "*BadName!"},
    			Spec: storageapi.CSINodeSpec{
    				Drivers: []storageapi.CSINodeDriver{
    					{
    						Name:         "invalid-name-!@#$%^&*()",
    						NodeID:       "invalid-node-!@#$%^&*()",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 12 20:55:35 UTC 2019
    - 4.4K bytes
    - Viewed (0)
  4. pkg/registry/storage/storageclass/storage/storage_test.go

    	deleteReclaimPolicy := api.PersistentVolumeReclaimDelete
    	test.TestCreate(
    		// valid
    		storageClass,
    		// invalid
    		&storageapi.StorageClass{
    			ObjectMeta:    metav1.ObjectMeta{Name: "*BadName!"},
    			ReclaimPolicy: &deleteReclaimPolicy,
    		},
    	)
    }
    
    func TestUpdate(t *testing.T) {
    	storage, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.Store.DestroyFunc()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 12 20:55:35 UTC 2019
    - 4.6K bytes
    - Viewed (0)
  5. src/runtime/defs_freebsd.go

    type Ucontext C.ucontext_t
    
    type Timespec C.struct_timespec
    type Timeval C.struct_timeval
    type Itimerval C.struct_itimerval
    
    type Umtx_time C.struct__umtx_time
    
    type KeventT C.struct_kevent
    
    type bintime C.struct_bintime
    type vdsoTimehands C.struct_vdso_timehands
    type vdsoTimekeep C.struct_vdso_timekeep
    
    const (
    	_VDSO_TK_VER_CURR = C.VDSO_TK_VER_CURR
    
    	vdsoTimehandsSize = C.sizeof_struct_vdso_timehands
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util.cc

    Status CreateFileForDumping(llvm::StringRef name,
                                std::unique_ptr<raw_ostream>* os,
                                std::string* filepath, llvm::StringRef dirname) {
      std::string dir;
      if (!dirname.empty())
        dir = std::string(dirname);
      else
        dir = GetDumpDirFromEnvVar();
    
      if (dir.empty()) {
        return Status(absl::StatusCode::kInvalidArgument,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 03:03:46 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/InstallExecutable.java

        public Provider<RegularFile> getRunScriptFile() {
            return installDirectory.file(executable.getLocationOnly().map(executableFile -> OperatingSystem.forName(targetPlatform.get().getOperatingSystem().getName()).getScriptName(executableFile.getAsFile().getName())));
        }
    
        @Inject
        protected FileSystem getFileSystem() {
            throw new UnsupportedOperationException();
        }
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. pkg/registry/core/configmap/storage/storage_test.go

    	validConfigMap := validNewConfigMap()
    	validConfigMap.ObjectMeta = metav1.ObjectMeta{
    		GenerateName: "foo-",
    	}
    
    	test.TestCreate(
    		validConfigMap,
    		&api.ConfigMap{
    			ObjectMeta: metav1.ObjectMeta{Name: "badName"},
    			Data: map[string]string{
    				"key": "value",
    			},
    		},
    		&api.ConfigMap{
    			ObjectMeta: metav1.ObjectMeta{Name: "name-2"},
    			Data: map[string]string{
    				"..dotfile": "do: nothing\n",
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 12 20:55:35 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  9. cluster/kubemark/util.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    source "${KUBE_ROOT}/test/kubemark/cloud-provider-config.sh"
    source "${KUBE_ROOT}/cluster/${CLOUD_PROVIDER}/util.sh"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 25 20:21:29 UTC 2019
    - 848 bytes
    - Viewed (0)
  10. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/AntBuilderAwareUtil.groovy

                src = new Path(getProject());
            }
            return src.createPath();
        }
    
        def void execute() {
            if (src) {
                src.list().each { String dirName ->
                    File dir = getProject().resolveFile(dirName);
                    getDirectoryScanner(dir).includedFiles.each { String fileName ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 5K bytes
    - Viewed (0)
Back to top