Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 70 for tl (0.02 sec)

  1. pkg/bootstrap/platform/azure.go

    		return an.(string)
    	}
    	return ""
    }
    
    // Returns the Azure tags
    func (e *azureEnv) azureTags() map[string]string {
    	tags := map[string]string{}
    	if tl, ok := e.computeMetadata["tagsList"]; ok {
    		tlByte, err := json.Marshal(tl)
    		if err != nil {
    			return tags
    		}
    		var atl []azureTag
    		err = json.Unmarshal(tlByte, &atl)
    		if err != nil {
    			return tags
    		}
    		for _, tag := range atl {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. src/syscall/syscall_unix_test.go

    		}
    		aixVer := string(out[:4])
    		tl, err := strconv.Atoi(string(out[5:7]))
    		if err != nil {
    			t.Skipf("skipping on AIX because oslevel -s output cannot be parsed: %v", err)
    		}
    		if aixVer < "7200" || (aixVer == "7200" && tl < 2) {
    			t.Skip("skipped on AIX versions previous to 7.2 TL 2")
    		}
    
    	}
    
    	tempDir := t.TempDir()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/nettest/nettest.go

    		out, _ := exec.Command("oslevel", "-s").Output()
    		if len(out) >= len("7200-XX-ZZ-YYMM") { // AIX 7.2, Tech Level XX, Service Pack ZZ, date YYMM
    			ver := string(out[:4])
    			tl, _ := strconv.Atoi(string(out[5:7]))
    			unStrmDgramEnabled = ver > "7200" || (ver == "7200" && tl >= 2)
    		}
    	default:
    		unStrmDgramEnabled = true
    	}
    }
    
    func unixStrmDgramEnabled() bool {
    	stackOnce.Do(probeStack)
    	return unStrmDgramEnabled
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. pilot/pkg/xds/cds_test.go

    				if cluster == nil {
    					t.Fatal("cluster not found")
    				}
    				cluster.GetTransportSocket().GetTypedConfig()
    				tl := xdstest.UnmarshalAny[tls.UpstreamTlsContext](t, cluster.GetTransportSocket().GetTypedConfig())
    				names := sets.New[string]()
    				// nolint: staticcheck
    				for _, n := range tl.GetCommonTlsContext().GetCombinedValidationContext().GetDefaultValidationContext().GetMatchSubjectAltNames() {
    					names.Insert(n.GetExact())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 02:06:39 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. docs/language_names.yml

    so: Soomaaliga
    sq: shqip
    sr: српски језик
    ss: SiSwati
    st: Sesotho
    su: Basa Sunda
    sv: svenska
    sw: Kiswahili
    ta: தமிழ்
    te: తెలుగు
    tg: тоҷикӣ
    th: ไทย
    ti: ትግርኛ
    tk: Türkmen
    tl: Wikang Tagalog
    tn: Setswana
    to: faka Tonga
    tr: Türkçe
    ts: Xitsonga
    tt: татар теле
    tw: Twi
    ty: Reo Tahiti
    ug: ئۇيغۇرچە‎
    uk: українська мова
    ur: اردو
    uz: Ўзбек
    ve: Tshivenḓa
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:42:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/builtin.go

    	)
    	return walkExpr(typecheck.Expr(h), init)
    }
    
    func badtype(op ir.Op, tl, tr *types.Type) {
    	var s string
    	if tl != nil {
    		s += fmt.Sprintf("\n\t%v", tl)
    	}
    	if tr != nil {
    		s += fmt.Sprintf("\n\t%v", tr)
    	}
    
    	// common mistake: *struct and *interface.
    	if tl != nil && tr != nil && tl.IsPtr() && tr.IsPtr() {
    		if tl.Elem().IsStruct() && tr.Elem().IsInterface() {
    			s += "\n\t(*struct vs *interface)"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/ModuleExclusions.java

        private final ExcludeFactory factory = new OptimizingExcludeFactory(// optimizes for nulls, 2-params, ... mandatory
            new CachingExcludeFactory(// caches the result of TL operations
                LoggingExcludeFactory.maybeLog(new NormalizingExcludeFactory(// performs algebra
                    new CachingExcludeFactory(// caches the result of optimization operations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/tests/ops.mlir

    func.func @tensor_invalid_2() -> !tfr.tensor<[N, T]
    
    // -----
    
    // CHECK-LABEL: call_op
    func.func @call_op(%arg0: !tfr.tensor<T>, %arg1: !tfr.tensor_list<TL>, %arg2: i32) -> !tfr.tensor<K> {
      %0 = tfr.call @Foo(%arg0, %arg1, %arg2) : (!tfr.tensor<T>, !tfr.tensor_list<TL>, i32) -> !tfr.tensor<K>
      func.return %0 : !tfr.tensor<K>
    }
    
    // -----
    
    // CHECK-LABEL: call_op_arg_attr(%arg0: i32) -> !tfr.tensor<K>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 14 22:15:06 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/typecheck.go

    				goto notenough
    			}
    		} else {
    			if n2 > n1 {
    				goto toomany
    			}
    			if n2 < n1 {
    				goto notenough
    			}
    		}
    	}
    
    	i = 0
    	for _, tl := range params {
    		t = tl.Type
    		if tl.IsDDD() {
    			if isddd {
    				if i >= len(nl) {
    					goto notenough
    				}
    				if len(nl)-i > 1 {
    					goto toomany
    				}
    				n = nl[i]
    				ir.SetPos(n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //
    //   // Thread 1
    //   ThreadLocal<int> tl(100);  // 100 is the default value for each thread.
    //
    //   // Thread 2
    //   tl.set(150);  // Changes the value for thread 2 only.
    //   EXPECT_EQ(150, tl.get());
    //
    //   // Thread 1
    //   EXPECT_EQ(100, tl.get());  // In thread 1, tl has the original value.
    //   tl.set(200);
    //   EXPECT_EQ(200, tl.get());
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top