Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 68 for myns (0.04 sec)

  1. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/ZincScalaCompilerOutputNormalizerTest.groovy

    """.trim()
    
        def "successfully normalizes Scala compiler output"() {
            given:
            String input = """
    > Task :app:compileJava NO-SOURCE
    > Task :app:compileScala
    Scala Compiler interface compilation took 1 hrs 20 mins 41.884 secs
    
    > Task :app:processResources NO-SOURCE
    > Task :app:classes
    > Task :app:jar
    > Task :app:startScripts
    > Task :app:distTar
    > Task :app:distZip
    > Task :app:assemble
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/TimeFormatting.java

                result.append(durationMillis / MILLIS_PER_HOUR).append(" hrs ");
            }
            if (durationMillis > (long) MILLIS_PER_MINUTE) {
                result.append((durationMillis % MILLIS_PER_HOUR) / MILLIS_PER_MINUTE).append(" mins ");
            }
            result.append((durationMillis % MILLIS_PER_MINUTE) / 1000.0).append(" secs");
            return result.toString();
        }
    
        public static String formatDurationTerse(long elapsedTimeInMs) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/msrpc/samr.idl

    		ACB_TEMPDUP                = 0x00000008, /* 1 = Temporary duplicate account */
    		ACB_NORMAL                 = 0x00000010, /* 1 = Normal user account */
    		ACB_MNS                    = 0x00000020, /* 1 = MNS logon user account */
    		ACB_DOMTRUST               = 0x00000040, /* 1 = Interdomain trust account */
    		ACB_WSTRUST                = 0x00000080, /* 1 = Workstation trust account */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  4. src/net/conf_test.go

    		},
    		{
    			name: "files_mdns_dns",
    			c: &conf{
    				mdnsTest: mdnsAssumeDoesNotExist,
    			},
    			resolv: defaultResolvConf,
    			nss:    nssStr(t, "hosts: files mdns dns"),
    			hostTests: []nssHostTest{
    				{"x.com", "myhostname", hostLookupFilesDNS},
    				{"x.local", "myhostname", hostLookupCgo},
    			},
    		},
    		{
    			name:   "dns_special_hostnames",
    			c:      &conf{},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:46:36 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.idl

    		ACB_TEMPDUP                = 0x00000008, /* 1 = Temporary duplicate account */
    		ACB_NORMAL                 = 0x00000010, /* 1 = Normal user account */
    		ACB_MNS                    = 0x00000020, /* 1 = MNS logon user account */
    		ACB_DOMTRUST               = 0x00000040, /* 1 = Interdomain trust account */
    		ACB_WSTRUST                = 0x00000080, /* 1 = Workstation trust account */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

        return nullptr;
      }
      auto mins = tensor.quantization->min;
      auto maxs = tensor.quantization->max;
      if (mins.size() != maxs.size() || mins.empty()) return nullptr;
    
      llvm::SmallVector<llvm::APFloat, 4> min_maxs;
      min_maxs.reserve(mins.size() * 2);
      for (int i = 0, end = mins.size(); i < end; ++i) {
        llvm::APFloat min(mins[i]);
        llvm::APFloat max(maxs[i]);
        min_maxs.push_back(min);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation_test.go

    		},
    		"reserved option keys": {
    			source: &core.FlexVolumeSource{
    				Driver: "foo",
    				Options: map[string]string{
    					// valid options
    					"myns.io":               "A",
    					"myns.io/bar":           "A",
    					"myns.io/kubernetes.io": "A",
    
    					// invalid options
    					"KUBERNETES.IO":     "A",
    					"kubernetes.io":     "A",
    					"kubernetes.io/":    "A",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  8. test/copy.go

    var output64 = make([]uint64, N)
    var inputS string
    var outputS = make([]uint8, N)
    
    type my8 []uint8
    type my16 []uint16
    type my32 []uint32
    type my32b []uint32
    type my64 []uint64
    type myS string
    
    func u8(i int) uint8 {
    	i = 'a' + i%26
    	return uint8(i)
    }
    
    func u16(ii int) uint16 {
    	var i = uint16(ii)
    	i = 'a' + i%26
    	i |= i << 8
    	return i
    }
    
    func u32(ii int) uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 6.6K bytes
    - Viewed (0)
  9. src/time/zoneinfo.go

    	}
    	off := hours * secondsPerHour
    	if len(s) == 0 || s[0] != ':' {
    		if neg {
    			off = -off
    		}
    		return off, s, true
    	}
    
    	var mins int
    	mins, s, ok = tzsetNum(s[1:], 0, 59)
    	if !ok {
    		return 0, "", false
    	}
    	off += mins * secondsPerMinute
    	if len(s) == 0 || s[0] != ':' {
    		if neg {
    			off = -off
    		}
    		return off, s, true
    	}
    
    	var secs int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. src/log/slog/handler_test.go

    			replace: func(_ []string, a Attr) Attr {
    				if a.Key == TimeKey {
    					return Group(TimeKey, "mins", 3, "secs", 2)
    				}
    				if a.Key == LevelKey {
    					return Attr{}
    				}
    				return a
    			},
    			wantText: `time.mins=3 time.secs=2 msg=message`,
    			wantJSON: `{"time":{"mins":3,"secs":2},"msg":"message"}`,
    		},
    		{
    			name:     "replace empty",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 13:57:53 UTC 2023
    - 19.6K bytes
    - Viewed (0)
Back to top