Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 644 for newsize (0.24 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go

    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func mremapNetBSD(oldp uintptr, oldsize uintptr, newp uintptr, newsize uintptr, flags int) (xaddr uintptr, err error) {
    	r0, _, e1 := Syscall6(SYS_MREMAP, uintptr(oldp), uintptr(oldsize), uintptr(newp), uintptr(newsize), uintptr(flags), 0)
    	xaddr = uintptr(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  2. pkg/volume/testing/testing.go

    func (plugin *FakeVolumePlugin) GetDeviceMountRefs(deviceMountPath string) ([]string, error) {
    	return []string{}, nil
    }
    
    // Expandable volume support
    func (plugin *FakeVolumePlugin) ExpandVolumeDevice(spec *volume.Spec, newSize resource.Quantity, oldSize resource.Quantity) (resource.Quantity, error) {
    	return resource.Quantity{}, nil
    }
    
    func (plugin *FakeVolumePlugin) RequiresFSResize() bool {
    	return !plugin.DisableNodeExpansion
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    	newPvcClone.Spec.VolumeAttributesClassName = oldPvcClone.Spec.VolumeAttributesClassName // +k8s:verify-mutation:reason=clone
    
    	oldSize := oldPvc.Spec.Resources.Requests["storage"]
    	newSize := newPvc.Spec.Resources.Requests["storage"]
    	statusSize := oldPvc.Status.Capacity["storage"]
    
    	if !apiequality.Semantic.DeepEqual(newPvcClone.Spec, oldPvcClone.Spec) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/term/term_windows.go

    		return nil, err
    	}
    	return &State{state{st}}, nil
    }
    
    func restore(fd int, state *State) error {
    	return windows.SetConsoleMode(windows.Handle(fd), state.mode)
    }
    
    func getSize(fd int) (width, height int, err error) {
    	var info windows.ConsoleScreenBufferInfo
    	if err := windows.GetConsoleScreenBufferInfo(windows.Handle(fd), &info); err != nil {
    		return 0, 0, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  5. releasenotes/notes/env-workload-rsa-keysize.yaml

    sha-rath <******@****.***> 1650601369 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 22 04:22:49 UTC 2022
    - 171 bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/TransactNamedPipeInputStream.java

            int i;
    
            if( len > ( pipe_buf.length - used )) {
                byte[] tmp;
                int new_size;
    
                new_size = pipe_buf.length * 2;
                if( len > ( new_size - used )) {
                    new_size = len + used;
                }
                tmp = pipe_buf;
                pipe_buf = new byte[new_size];
                i = tmp.length - beg_idx;
                if( used > i ) { /* 2 chunks */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 4.6K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/FilesFileTraverserTest.java

      public void testFileTraverser_multipleDirectoryLayers_breadthFirstStartsWithTopLayer()
          throws Exception {
        File fileA = newFile("file-a");
        File dir1 = newDir("dir-1");
        newFile("dir-1/file-b");
        newFile("dir-1/dir-2");
    
        assertThat(Iterables.limit(Files.fileTraverser().breadthFirst(rootDir), 3))
            .containsExactly(rootDir, fileA, dir1);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 20:17:27 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageDisplayConfiguration.groovy

                        .append(newLine)
                }
                sb.append(newLine)
            }
            if (includeLink) {
                sb.append(outro)
            }
            sb.toString().trim()
        }
    
        StringBuilder label(String newLine = "") {
            new StringBuilder(intro)
                .append(endLineWithDot(description))
                .append(newLine)
                .append(newLine)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 11:12:24 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. src/os/signal/signal_cgo_test.go

    	// we must ignore SIGTTOU. We are also an orphaned process
    	// group (see above), so we must mask SIGTTOU to be eligible to
    	// become foreground at all.
    	signal.Ignore(syscall.SIGTTOU)
    
    	pty := os.NewFile(ptyFD, "pty")
    	controlW := os.NewFile(controlFD, "control-pipe")
    
    	var (
    		ctx     = context.Background()
    		cmdArgs = []string{"-test.run=^TestTerminalSignal$"}
    	)
    	if deadline, ok := t.Deadline(); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. pkg/util/slice/slice.go

    	newSlice := make([]string, 0)
    	for _, item := range slice {
    		if item == s {
    			continue
    		}
    		if modifier != nil && modifier(item) == s {
    			continue
    		}
    		newSlice = append(newSlice, item)
    	}
    	if len(newSlice) == 0 {
    		// Sanitize for unit tests so we don't need to distinguish empty array
    		// and nil.
    		newSlice = nil
    	}
    	return newSlice
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 21 19:03:53 UTC 2019
    - 2.1K bytes
    - Viewed (0)
Back to top