Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 88 for sysconf (0.09 sec)

  1. src/cmd/cgo/internal/testsanitizers/testdata/tsan11.go

    // license that can be found in the LICENSE file.
    
    package main
    
    // This program hung when run under the C/C++ ThreadSanitizer. TSAN defers
    // asynchronous signals until the signaled thread calls into libc. The runtime's
    // sysmon goroutine idles itself using direct usleep syscalls, so it could
    // run for an arbitrarily long time without triggering the libc interceptors.
    // See https://golang.org/issue/18717.
    
    import (
    	"os"
    	"os/signal"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. src/runtime/testdata/testprogcgo/stack_windows.go

    		}()
    	}
    	wg.Wait()
    	mem2, err := getPagefileUsage()
    	if err != nil {
    		panic(err)
    	}
    	// assumes that this process creates 1 thread for each
    	// thread locked goroutine plus extra 10 threads
    	// like sysmon and others
    	print((mem2 - mem1) / (threadCount + 10))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 17:31:31 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. src/fmt/doc.go

    [Fscanf] and [Fscanln] read from a specified [io.Reader]; [Sscan],
    [Sscanf] and [Sscanln] read from an argument string.
    
    [Scan], [Fscan], [Sscan] treat newlines in the input as spaces.
    
    [Scanln], [Fscanln] and [Sscanln] stop scanning at a newline and
    require that the items be followed by a newline or EOF.
    
    [Scanf], [Fscanf], and [Sscanf] parse the arguments according to a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/ivy/IvyDescriptorDependencyTest.groovy

            given:
            IvyDescriptorDependency ivyDescriptorDependency = new IvyDescriptorDependency(confs: [givenConf])
    
            when:
            boolean matchingConf = ivyDescriptorDependency.hasConf(expectedConf)
    
            then:
            matchingConf == result
    
            where:
            givenConf | expectedConf | result
            null      | 'compile'    | false
            'compile' | null         | false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. pkg/kube/inject/openshift.go

    	if strings.Contains(in, "/") {
    		var start, size uint32
    		n, err := fmt.Sscanf(in, "%d/%d", &start, &size)
    		if err != nil {
    			return Block{}, err
    		}
    		if n != 2 {
    			return Block{}, ErrBlockSlashBadFormat
    		}
    		return Block{Start: start, End: start + size - 1}, nil
    	}
    
    	var start, end uint32
    	n, err := fmt.Sscanf(in, "%d-%d", &start, &end)
    	if err != nil {
    		return Block{}, err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 19:10:42 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  6. src/log/syslog/syslog_test.go

    		return
    	}
    
    	if transport == "unixgram" || transport == "unix" {
    		var month, date, ts string
    		var pid int
    		tmpl := fmt.Sprintf("<%d>%%s %%s %%s syslog_test[%%d]: %s\n", LOG_USER+LOG_INFO, in)
    		n, err := fmt.Sscanf(out, tmpl, &month, &date, &ts, &pid)
    		if n != 4 || err != nil {
    			t.Errorf("Got %q, does not match template %q (%d %s)", out, tmpl, n, err)
    		}
    		return
    	}
    
    	// Non-UNIX domain transports.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 12 16:09:24 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/setup.python.sh

      # set up symlink for devtoolset-10
      rm -f /dt10/usr/include/aarch64-linux-gnu/$f
      ln -s /usr/include/aarch64-linux-gnu/$f /dt10/usr/include/aarch64-linux-gnu/$f
    done
    popd
    
    # Python 3.10 include headers fix:
    # sysconfig.get_path('include') incorrectly points to /usr/local/include/python
    # map /usr/include/python3.10 to /usr/local/include/python3.10
    if [[ ! -f "/usr/local/include/$VERSION" ]]; then
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 00:26:34 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyArtifact.java

         * The '*' wildcard can be used to designate that the artifact is published in all public configurations.
         * @param conf The value of 'conf' for this artifact.
         */
        void setConf(@Nullable String conf);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. tensorflow/api_template_v1.__init__.py

    _site_packages_dirs += [p for p in _sys.path if "site-packages" in p]
    if "getsitepackages" in dir(_site):
      _site_packages_dirs += _site.getsitepackages()
    
    if "sysconfig" in dir(_distutils):
      _site_packages_dirs += [_distutils.sysconfig.get_python_lib()]
    
    _site_packages_dirs = list(set(_site_packages_dirs))
    
    # Find the location of this exact file.
    _current_file_location = _inspect.getfile(_inspect.currentframe())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 02:14:00 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/artifact/NormalizedIvyArtifact.java

            throw new IllegalStateException();
        }
    
        @Nullable
        @Override
        public String getConf() {
            return conf;
        }
    
        @Override
        public void setConf(@Nullable String conf) {
            throw new IllegalStateException();
        }
    
        @Override
        public String getExtension() {
            return extension;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top