Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 763 for certChain (0.43 sec)

  1. src/go/parser/testdata/issue3106.src

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test case for go.dev/issue/3106: Better synchronization of
    // parser after certain syntax errors.
    
    package main
    
    func f() {
    	var m Mutex
    	c := MakeCond(&m)
    	percent := 0
    	const step = 10
    	for i := 0; i < 5; i++ {
    		go func() {
    			for {
    				// Emulates some useful work.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 829 bytes
    - Viewed (0)
  2. src/internal/syscall/unix/sysnum_linux_generic.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build linux && (arm64 || loong64 || riscv64)
    
    package unix
    
    // This file is named "generic" because at a certain point Linux started
    // standardizing on system call numbers across architectures. So far this
    // means only arm64 loong64 and riscv64 use the standard numbers.
    
    const (
    	getrandomTrap       uintptr = 278
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 589 bytes
    - Viewed (0)
  3. test/fixedbugs/issue14591.go

    // when they are assigned to a PPARAMOUT slot before
    // the last GC safepoint.
    
    package main
    
    import (
    	"fmt"
    	"runtime"
    )
    
    // When a T is deallocated, T[1] is certain to
    // get clobbered (the runtime writes 0xdeaddeaddeaddead there).
    type T [4]int
    
    func f() (r, s *T) {
    	r = &T{0x30, 0x31, 0x32, 0x33}
    	runtime.GC()
    	s = &T{0x40, 0x41, 0x42, 0x43}
    	runtime.GC()
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 769 bytes
    - Viewed (0)
  4. hack/make-rules/verify.sh

      "verify-openapi-docs-urls.sh"  # Spams docs URLs, don't run in CI.
      )
    
    # Exclude typecheck in certain cases, if they're running in a separate job.
    if [[ ${EXCLUDE_TYPECHECK:-} =~ ^[yY]$ ]]; then
      EXCLUDED_PATTERNS+=(
        "verify-typecheck.sh"              # runs in separate typecheck job
        )
    fi
    
    # Exclude dependency checks in certain cases, if they're running in a separate job.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 12:24:15 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/plugin/software/internal/ConventionReceiver.java

     * limitations under the License.
     */
    
    package org.gradle.plugin.software.internal;
    
    /**
     * Marker interface for objects that can receive conventions of a certain type and apply them appropriately.
     *
     * @since 8.9
     */
    public interface ConventionReceiver {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 837 bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unusedresult/doc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package unusedresult defines an analyzer that checks for unused
    // results of calls to certain pure functions.
    //
    // # Analyzer unusedresult
    //
    // unusedresult: check for unused results of calls to some functions
    //
    // Some functions like fmt.Errorf return a result and have no side
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 793 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/merge_node_with_function.pbtxt

    # This is a stripped down GraphDef of the model from b/175240312. To hit the
    # bug, the GraphDef needs to have functions in the library and also a Merge node
    # to go into certain part of the functionalization code where it crashes.
    
    node {
      name: "input"
      op: "Placeholder"
      attr {
        key: "dtype"
        value {
          type: DT_BOOL
        }
      }
    }
    node {
      name: "Switch0"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 14 20:47:36 UTC 2021
    - 1K bytes
    - Viewed (0)
  8. cmd/main.go

    	cli.BoolFlag{
    		Name:   "compat",
    		Usage:  "enable strict S3 compatibility by turning off certain performance optimizations",
    		Hidden: true,
    	},
    	// This flag is hidden and to be used only during certain performance testing.
    	cli.BoolFlag{
    		Name:   "no-compat",
    		Usage:  "disable strict S3 compatibility by turning on certain performance optimizations",
    		Hidden: true,
    	},
    }
    
    // Help template for minio.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/plugin/management/internal/autoapply/AutoAppliedPluginRegistry.java

    import org.gradle.api.Project;
    import org.gradle.api.initialization.Settings;
    import org.gradle.plugin.management.internal.PluginRequests;
    
    /**
     * Provides a list of plugins that can be auto-applied to a certain Project.
     *
     * @since 4.3
     */
    public interface AutoAppliedPluginRegistry {
    
        /**
         * Returns the plugins that should be auto-applied to the given
         * target, based on the current build invocation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 00:08:18 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ClassLoaderScope.java

    import org.gradle.internal.hash.HashCode;
    
    import javax.annotation.Nullable;
    import java.util.function.Function;
    
    /**
     * Represents a particular node in the ClassLoader graph.
     *
     * Certain domain objects (e.g. Gradle, Settings, Project) have an associated class loader scope. This is used for evaluating associated scripts and script plugins.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top