Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 76 for kindid (0.09 sec)

  1. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJvmMetadataDetectorTest.groovy

            File javaHome = new File(temporaryFolder, jdk).tap { mkdirs() }
            if (!jre) {
                def binDir = new File(javaHome, "bin")
                if (binDir.mkdir()) {
                    File javac = new File(binDir, OperatingSystem.current().getExecutableName('javac'))
                    javac << 'dummy'
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/base/base.go

    	// worst overshoot observed was 50% past requestedHeapGoal.
    
    	metrics.Read(sample)
    	for _, s := range sample {
    		if s.Value.Kind() == metrics.KindBad {
    			// Just return, a slightly slower compilation is a tolerable outcome.
    			if logHeapTweaks {
    				fmt.Fprintf(os.Stderr, "GCAdjust: Regret unexpected KindBad for metric %s\n", s.Name)
    			}
    			return
    		}
    	}
    
    	// Tinker with GOGC to make the heap grow rapidly at first.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/DumpbinBinaryInfo.groovy

            }
            DefaultNativePlatform targetPlatform = new DefaultNativePlatform("default");
            def visualCpp = vsInstall.visualCpp.forPlatform(targetPlatform)
            vcBin = visualCpp.binDir
            vcPath = visualCpp.path.join(';')
        }
    
        static @Nullable VisualStudioInstall findVisualStudio() {
            return VisualStudioLocatorTestFixture.visualStudioLocator.locateComponent(null).component
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. src/runtime/cgo/gcc_libinit.c

    static pthread_cond_t runtime_init_cond = PTHREAD_COND_INITIALIZER;
    static pthread_mutex_t runtime_init_mu = PTHREAD_MUTEX_INITIALIZER;
    static int runtime_init_done;
    
    // pthread_g is a pthread specific key, for storing the g that binded to the C thread.
    // The registered pthread_key_destructor will dropm, when the pthread-specified value g is not NULL,
    // while a C thread is exiting.
    static pthread_key_t pthread_g;
    static void pthread_key_destructor(void* g);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 01:07:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. cni/pkg/install/install.go

    	// we shouldn't fire events for binaries that are not ours.
    	var binPaths []string
    	for _, bindir := range in.cfg.CNIBinTargetDirs {
    		for _, binary := range installedBinFiles.UnsortedList() {
    			binPaths = append(binPaths, filepath.Join(bindir, binary))
    		}
    	}
    	targets := append(
    		binPaths,
    		in.cfg.MountedCNINetDir,
    		in.cfg.K8sServiceAccountPath,
    	)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h.pump

    // A helper for implementing get<k>().
    template <int k> class Get;
    
    // A helper for implementing tuple_element<k, T>.  kIndexValid is true
    // iff k < the number of fields in tuple type T.
    template <bool kIndexValid, int kIndex, class Tuple>
    struct TupleElement;
    
    
    $for i [[
    template <GTEST_$(n)_TYPENAMES_(T)>
    struct TupleElement<true, $i, GTEST_$(n)_TUPLE_(T) > {
      typedef T$i type;
    };
    
    
    ]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. cmd/kube-proxy/app/server.go

    		}
    	}
    
    	// If a bindAddress is passed, override the primary IP
    	bindIP := netutils.ParseIPSloppy(bindAddress)
    	if bindIP != nil && !bindIP.IsUnspecified() {
    		if netutils.IsIPv4(bindIP) {
    			primaryFamily = v1.IPv4Protocol
    		} else {
    			primaryFamily = v1.IPv6Protocol
    		}
    		nodeIPs[primaryFamily] = bindIP
    	}
    
    	if nodeIPs[primaryFamily].IsLoopback() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  8. docs/tr/docs/async.md

    Aşkınla beraber 😍 dışarı hamburger yemeye çıktınız 🍔, kasiyer 💁 öndeki insanlardan sipariş alırken siz sıraya girdiniz.
    
    Sıra sizde ve sen aşkın 😍 ve kendin için 2 çılgın hamburger 🍔 söylüyorsun.
    
    Ödemeyi yaptın 💸.
    
    Kasiyer 💁 mutfakdaki aşçıya 👨‍🍳 hamburgerleri 🍔 hazırlaması gerektiğini söyler ve aşçı bunu bilir (o an önceki müşterilerin siparişlerini hazırlıyor olsa bile).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h.pump

    // A helper for implementing get<k>().
    template <int k> class Get;
    
    // A helper for implementing tuple_element<k, T>.  kIndexValid is true
    // iff k < the number of fields in tuple type T.
    template <bool kIndexValid, int kIndex, class Tuple>
    struct TupleElement;
    
    
    $for i [[
    template <GTEST_$(n)_TYPENAMES_(T)>
    struct TupleElement<true, $i, GTEST_$(n)_TUPLE_(T) > {
      typedef T$i type;
    };
    
    
    ]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  10. ci/official/containers/linux_arm64/builder.devtoolset/gcc9-fixups.patch

       __asm__ (".symver " #internal ", " vername);
    diff --git a/locale/weightwc.h b/locale/weightwc.h
    index e966c03..22ab790 100644
    --- a/locale/weightwc.h
    +++ b/locale/weightwc.h
    @@ -79,19 +79,19 @@ findidx (const wint_t **cpp, size_t len)
     	    if (cp[cnt] != usrc[cnt])
     	      break;
     
    -	  if (cnt < nhere - 1)
    +	  if (cnt < nhere - 1 || cnt == len)
     	    {
     	      cp += 2 * nhere;
     	      continue;
     	    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 8.9K bytes
    - Viewed (0)
Back to top