Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 130 for pvs1 (0.03 sec)

  1. src/test/java/org/codelibs/fess/dict/kuromoji/KuromojiFileTest.java

        @Override
        protected void setUp() throws Exception {
            file1 = File.createTempFile("kuromoji_", ".txt");
            FileUtil.write(
                    file1.getAbsolutePath(),
                    "token1,seg1,reading1,pos1\ntoken2,seg2,reading2,pos2\ntoken3,seg3,reading3,pos3"
                            .getBytes(Constants.UTF_8));
        }
    
        @Override
        protected void tearDown() throws Exception {
            file1.delete();
        }
        */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. src/internal/poll/sendfile_bsd.go

    		return 0, err, false
    	}
    
    	dst := dstFD.Sysfd
    	for remain > 0 {
    		n := maxSendfileSize
    		if int64(n) > remain {
    			n = int(remain)
    		}
    		pos1 := pos
    		n, err = syscall.Sendfile(dst, src, &pos1, n)
    		if n > 0 {
    			pos += int64(n)
    			written += int64(n)
    			remain -= int64(n)
    		}
    		if err == syscall.EINTR {
    			continue
    		}
    		// This includes syscall.ENOSYS (no kernel
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/util/testing/fake_test.go

    	// Add a virtual server
    	vs1 := &utilipvs.VirtualServer{
    		Address:  netutils.ParseIPSloppy("1.2.3.4"),
    		Port:     uint16(80),
    		Protocol: string("TCP"),
    		Flags:    utilipvs.FlagHashed,
    	}
    	err := fake.AddVirtualServer(vs1)
    	if err != nil {
    		t.Errorf("Fail to add virtual server, error: %v", err)
    	}
    	// Get a specific virtual server
    	got1, err := fake.GetVirtualServer(vs1)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. test/assign1.go

    	pp1 = pp  // ERROR "cannot use|incompatible"
    
    	ps0 = ps  // ERROR "cannot use|incompatible"
    	ps0 = ps1 // ERROR "cannot use|incompatible"
    	ps = ps0  // ERROR "cannot use|incompatible"
    	ps = ps1  // ERROR "cannot use|incompatible"
    	ps1 = ps0 // ERROR "cannot use|incompatible"
    	ps1 = ps  // ERROR "cannot use|incompatible"
    
    
    	a0 = [10]int(a)
    	a0 = [10]int(a1)
    	a = A(a0)
    	a = A(a1)
    	a1 = A1(a0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 02:19:43 UTC 2012
    - 5.6K bytes
    - Viewed (0)
  5. pkg/volume/util/resize_util_test.go

    			}
    		})
    	}
    
    }
    
    func TestCreatePVCPatch(t *testing.T) {
    	pvc1 := makePVC([]v1.PersistentVolumeClaimCondition{
    		{
    			Type:               v1.PersistentVolumeClaimFileSystemResizePending,
    			Status:             v1.ConditionTrue,
    			LastTransitionTime: metav1.Now(),
    		},
    	}).get()
    	pvc1.SetResourceVersion("10")
    	pvc2 := pvc1.DeepCopy()
    	pvc2.Status.Capacity = v1.ResourceList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/volumebinding/binder.go

    	b.csiDriverLister = capacityCheck.CSIDriverInformer.Lister()
    	b.csiStorageCapacityLister = capacityCheck.CSIStorageCapacityInformer.Lister()
    
    	return b
    }
    
    // FindPodVolumes finds the matching PVs for PVCs and nodes to provision PVs
    // for the given pod and node. If the node does not fit, conflict reasons are
    // returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/expr2.go

    	type (
    		S1 struct{}
    		S2 struct{}
    		P1 *S1
    		P2 *S2
    	)
    	var (
    		ps1 *S1
    		ps2 *S2
    		p1 P1
    		p2 P2
    	)
    	_ = ps1 == ps1
    	_ = ps1 == ps2 /* ERROR "mismatched types" */
    	_ = ps2 == ps1 /* ERROR "mismatched types" */
    
    	_ = p1 == p1
    	_ = p1 == p2 /* ERROR "mismatched types" */
    
    	_ = p1 == ps1
    }
    
    func channels() {
    	// basics
    	var c, d chan int
    	_ = c == d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. ci/official/containers/linux_arm64/devel.bashrc

    # limitations under the License.
    #
    # ==============================================================================
    
    # Do not print anything if this is not being used interactively
    [ -z "$PS1" ] && return
    
    # Set up attractive prompt
    export PS1="\[\e[31m\]tf-docker\[\e[m\] \[\e[33m\]\w\[\e[m\] > "
    export TERM=xterm-256color
    alias grep="grep --color=auto"
    alias ls="ls --color=auto"
    # Fix nvidia-docker
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 988 bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    		pvs = append(pvs, pv)
    
    		pod.Spec.Volumes = append(pod.Spec.Volumes, corev1.Volume{VolumeSource: corev1.VolumeSource{
    			PersistentVolumeClaim: &corev1.PersistentVolumeClaimVolumeSource{ClaimName: pv.Spec.ClaimRef.Name},
    		}})
    	}
    
    	return pod, pvs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/volumebinding/assume_cache.go

    		Spec: v1.PersistentVolumeSpec{
    			StorageClassName: storageClassName,
    		},
    	})
    	pvs := []*v1.PersistentVolume{}
    	for _, obj := range objs {
    		pv, ok := obj.(*v1.PersistentVolume)
    		if !ok {
    			c.logger.Error(&assumecache.WrongTypeError{TypeName: "v1.PersistentVolume", Object: obj}, "ListPVs")
    			continue
    		}
    		pvs = append(pvs, pv)
    	}
    	return pvs
    }
    
    // PVCAssumeCache is a AssumeCache for PersistentVolumeClaim objects
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top