Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for nextName (0.14 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/CommandLineToolVersionLocator.java

            String visualStudioInstallPath = null;
            String visualStudioVersion = null;
    
            reader.beginObject();
            while (reader.hasNext()) {
                String key = reader.nextName();
                if (key.equals(INSTALLATION_PATH_KEY)) {
                    visualStudioInstallPath = reader.nextString();
                } else if (key.equals(INSTALLATION_VERSION_KEY)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/time_budget_test.go

    	nextTime = nextTime.Add(-2 * time.Minute)
    	fakeClock.SetTime(nextTime)
    	if res := budget.takeAvailable(); res != time.Duration(0) {
    		t.Errorf("Expected: %v, got: %v", time.Duration(0), res)
    	}
    	// wait for longer than the maxBudget
    	// verify that adding a negative value didn't affected
    	nextTime = nextTime.Add(10 * time.Minute)
    	fakeClock.SetTime(nextTime)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 15 09:52:18 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/net/SmbShareInfo.java

        protected String netName;
        protected int type;
        protected String remark;
    
    
        /**
         * 
         */
        public SmbShareInfo () {}
    
    
        /**
         * 
         * @param netName
         * @param type
         * @param remark
         */
        public SmbShareInfo ( String netName, int type, String remark ) {
            this.netName = netName;
            this.type = type;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Feb 17 09:30:57 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbShareInfo.java

        protected String netName;
        protected int type;
        protected String remark;
    
        public SmbShareInfo() {
        }
        public SmbShareInfo(String netName, int type, String remark)
        {
            this.netName = netName;
            this.type = type;
            this.remark = remark;
        }
        public String getName() {
            return netName;
        }
        public int getType() {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/eventclock/fake_event_clock_test.go

    		t.Errorf("Expected %v, but %v ran", shouldRun, numDone-batchSize-1)
    	}
    	lastTime = now.Add(-3 * time.Second)
    	for i := int32(0); i < shouldRun; i++ {
    		nextTime := <-times
    		if nextTime.Before(lastTime) {
    			t.Errorf("Got %s after %s", nextTime, lastTime)
    		}
    		lastTime = nextTime
    	}
    }
    
    // copied from baseclocktest, because it is not public
    func exerciseSettablePassiveClock(t *testing.T, pc TestableEventClock) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 07 04:07:31 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/eventclock/real_event_clock_test.go

    		t.Errorf("Got only %v events", numDone)
    	}
    	lastTime := now
    	for i := 0; i <= batchSize; i++ {
    		nextTime := <-times
    		if nextTime.Before(now) {
    			continue
    		}
    		dt := nextTime.Sub(lastTime) / (50 * time.Millisecond)
    		if dt < 0 {
    			t.Errorf("Got %s after %s", nextTime, lastTime)
    		}
    		lastTime = nextTime
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 07 04:07:31 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  7. schema/naming.go

    		buf                            strings.Builder
    		lastCase, nextCase, nextNumber bool // upper case == true
    		curCase                        = value[0] <= 'Z' && value[0] >= 'A'
    	)
    
    	for i, v := range value[:len(value)-1] {
    		nextCase = value[i+1] <= 'Z' && value[i+1] >= 'A'
    		nextNumber = value[i+1] >= '0' && value[i+1] <= '9'
    
    		if curCase {
    			if lastCase && (nextCase || nextNumber) {
    				buf.WriteRune(v + 32)
    			} else {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/dcerpc/msrpc/srvsvc.idl

    	version(3.0)
    ]
    interface srvsvc
    {
    	import "../rpc.idl";
    
    	typedef struct {
    		[string] wchar_t *netname;
    	} ShareInfo0;
    
    	typedef struct {
    		int count;
    		[size_is(count)] ShareInfo0 *array;
    	} ShareInfoCtr0;
    
    	typedef struct {
    		[string] wchar_t *netname;
    		int type;
    		[string] wchar_t *remark;
    	} ShareInfo1;
    
    	typedef struct {
    		int count;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.idl

    	version(3.0)
    ]
    interface srvsvc
    {
    	import "../rpc.idl";
    
    	typedef struct {
    		[string] wchar_t *netname;
    	} ShareInfo0;
    
    	typedef struct {
    		int count;
    		[size_is(count)] ShareInfo0 *array;
    	} ShareInfoCtr0;
    
    	typedef struct {
    		[string] wchar_t *netname;
    		int type;
    		[string] wchar_t *remark;
    	} ShareInfo1;
    
    	typedef struct {
    		int count;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/dcerpc/msrpc/MsrpcShareEnum.java

    @SuppressWarnings ( "javadoc" )
    public class MsrpcShareEnum extends srvsvc.ShareEnumAll {
    
        class MsrpcShareInfo1 extends SmbShareInfo {
    
            MsrpcShareInfo1 ( srvsvc.ShareInfo1 info1 ) {
                this.netName = info1.netname;
                this.type = info1.type;
                this.remark = info1.remark;
            }
        }
    
    
        public MsrpcShareEnum ( String server ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2K bytes
    - Viewed (0)
Back to top