Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 138 for my_all (0.18 sec)

  1. src/syscall/types_netbsd.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    /*
    Input to cgo -godefs.  See also mkerrors.sh and mkall.sh
    */
    
    // +godefs map struct_in_addr [4]byte /* in_addr */
    // +godefs map struct_in6_addr [16]byte /* in6_addr */
    
    package syscall
    
    /*
    #define KERNEL
    #include <dirent.h>
    #include <fcntl.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/shell_test.go

    		// both -n (as the first argument) and escape sequences are omitted.”
    		cmd := testenv.Command(t, "/bin/sh", "-c", "printf '%s\n' "+string(b))
    		cmd.Env = append(cmd.Environ(), "LC_ALL=POSIX", "POSIXLY_CORRECT=1")
    		cmd.Stderr = new(strings.Builder)
    		out, err := cmd.Output()
    		if err != nil {
    			t.Fatalf("%#q: %v\n%s", cmd.Args, err, cmd.Stderr)
    		}
    
    		if string(out) != wantOut {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 15 15:30:05 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. src/syscall/types_solaris.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    /*
    Input to cgo -godefs.  See also mkerrors.sh and mkall.sh
    */
    
    // +godefs map struct_in_addr [4]byte /* in_addr */
    // +godefs map struct_in6_addr [16]byte /* in6_addr */
    
    package syscall
    
    /*
    #define KERNEL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 4.9K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/testprog/cpu-profile.go

    func cpuHog1(x int) int {
    	return cpuHog0(x, 1e5)
    }
    
    func cpuHog0(x, n int) int {
    	foo := x
    	for i := 0; i < n; i++ {
    		if i%1000 == 0 {
    			// Spend time in mcall, stored as gp.m.curg, with g0 running
    			runtime.Gosched()
    		}
    		if foo > 0 {
    			foo *= foo
    		} else {
    			foo *= foo + 1
    		}
    	}
    	return foo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_lazy_test_of_test_dep.txt

    # This file demonstrates the effect of lazy loading on the reproducibility of
    # tests (and tests of test dependencies) outside the main module.
    #
    # It is similar to the cases in mod_all.txt and mod_lazy_test_horizon.txt, but
    # focuses on the effect of "go test" on specific packages instead of the "all"
    # pattern.
    
    # The package import graph used in this test looks like:
    #
    # lazy ---- a
    #           |
    #           a_test ---- b
    #                       |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 08 19:32:28 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  6. hack/update-vendor-licenses.sh

    #    update /LICENSES
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    export LANG=C
    export LC_ALL=C
    
    ###############################################################################
    # Process package content
    #
    # @param package  The incoming package name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:53 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/core-plugins/build_dashboard_plugin.adoc

    ====
    
    Applying the plugin adds the `buildDashboard` task to your project. The task aggregates the reports for all tasks that implement the link:{groovyDslPath}/org.gradle.api.reporting.Reporting.html[Reporting] interface from _all projects_ in the build. It is typically only applied to the root project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/plan9/mkerrors.sh

    # license that can be found in the LICENSE file.
    
    # Generate Go code listing errors and other #defined constant
    # values (ENAMETOOLONG etc.), by asking the preprocessor
    # about the definitions.
    
    unset LANG
    export LC_ALL=C
    export LC_CTYPE=C
    
    CC=${CC:-gcc}
    
    uname=$(uname)
    
    includes='
    #include <sys/types.h>
    #include <sys/file.h>
    #include <fcntl.h>
    #include <dirent.h>
    #include <sys/socket.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 5.9K bytes
    - Viewed (2)
  9. manifests/addons/dashboards/istio-service-dashboard.json

            "tagsQuery": "",
            "type": "custom",
            "useTags": false
          },
          {
            "current": {
              "selected": false,
              "text": "All",
              "value": "$__all"
            },
            "datasource": {
              "type": "prometheus",
              "uid": "${datasource}"
            },
            "definition": "",
            "hide": 0,
            "includeAll": true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
  10. hack/verify-prometheus-imports.sh

      fi
      all_failing_files+=("$filepath")
    done < <(cd "${KUBE_ROOT}" && grep \
      --exclude-dir={_output,vendor} \
      --include='*.go' \
      -R . \
      -l \
      -Ee '"github.com/prometheus/.*"' \
    | LC_ALL=C sort -u)
    
    # check for any files we're allowing to fail that are no longer failing, so we
    # can enforce that the list shrinks
    allowed_but_not_failing=()
    for allowed_file in "${allowed_prometheus_importers[@]}"; do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 04:03:51 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top