Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 194 for alternate (0.17 sec)

  1. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/variants/GradlePluginWithVariantsPublicationIntegrationTest.groovy

                }
    
                group = "com.example"
                version = "1.0"
    
                // Add an alternate variant
                def alternate = sourceSets.create('alternate')
                java {
                    registerFeature(alternate.name) {
                        usingSourceSet(alternate)
                        capability(project.group.toString(), project.name, project.version.toString())
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. doc/next/6-stdlib/99-minor/runtime/debug/42888.md

    The [SetCrashOutput] function allows the user to specify an alternate
    file to which the runtime should write its fatal crash report.
    It may be used to construct an automated reporting mechanism for all
    unexpected crashes, not just those in goroutines that explicitly use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 20:49:22 UTC 2024
    - 282 bytes
    - Viewed (0)
  3. src/internal/testlog/exit.go

    // with calls to os.Exit
    var panicOnExit0 struct {
    	mu  sync.Mutex
    	val bool
    }
    
    // SetPanicOnExit0 sets panicOnExit0 to v.
    //
    // SetPanicOnExit0 should be an internal detail,
    // but alternate implementations of go test in other
    // build systems may need to access it using linkname.
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname SetPanicOnExit0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/connection/RouteDatabase.kt

     * used so that OkHttp can learn from its mistakes: if there was a failure attempting to connect to
     * a specific IP address or proxy server, that failure is remembered and alternate routes are
     * preferred.
     */
    class RouteDatabase {
      private val _failedRoutes = mutableSetOf<Route>()
    
      val failedRoutes: Set<Route>
        @Synchronized get() = _failedRoutes.toSet()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. pkg/controller/garbagecollector/graph_builder.go

    				// this alternate is the first following verifiedAbsentIdentity lexically
    				firstFollowing = &ref
    			}
    		}
    	}
    
    	// return the first alternate identity following the verified absent identity, if there is one
    	if firstFollowing != nil {
    		return firstFollowing
    	}
    	// otherwise return the first alternate identity
    	return first
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  6. src/runtime/signal_unix.go

    // thread's alternate signal stack and signal mask.
    func minitSignals() {
    	minitSignalStack()
    	minitSignalMask()
    }
    
    // minitSignalStack is called when initializing a new m to set the
    // alternate signal stack. If the alternate signal stack is not set
    // for the thread (the normal case) then set the alternate signal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  7. src/cmd/objdump/main.go

    //
    // Objdump prints a disassembly of all text symbols (code) in the binary.
    // If the -s option is present, objdump only disassembles
    // symbols with names matching the regular expression.
    //
    // Alternate usage:
    //
    //	go tool objdump binary start end
    //
    // In this mode, objdump disassembles the binary starting at the start address and
    // stopping at the end address. The start and end addresses are program
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperty.java

         * can be removed once base version will be the one that also uses 'replacedAccessors'.
         */
        @SerializedName(value = "replacedAccessors", alternate = {"upgradedAccessors", "upgradedMethods"})
        private final List<ReplacedAccessor> replacedAccessors;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. tests/integration/security/ca_custom_root/main_test.go

    		Setup(func(ctx resource.Context) error {
    			return createCustomInstances(&apps)
    		}).
    		Run()
    }
    
    func setupConfig(_ resource.Context, cfg *istio.Config) {
    	if cfg == nil {
    		return
    	}
    	// Add alternate root certificate to list of trusted anchors
    	script := path.Join(env.IstioSrc, "samples/certs", "root-cert-alt.pem")
    	rootPEM, err := cert.LoadCert(script)
    	if err != nil {
    		return
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. operator/pkg/util/progress/progress.go

    		prefix = `{{ yellow "-" }} `
    	}
    	// reduce by 2 to allow for the "- " that will be added below
    	maxWidth -= 2
    	if maxWidth > 0 && len(msg) > maxWidth {
    		return prefix + msg[:maxWidth-3] + "..."
    	}
    	// cycle will alternate between "-" and " ". "-" is given multiple times to avoid quick flashing back and forth
    	return prefix + msg
    }
    
    // For testing only
    var testWriter *io.Writer
    
    func createBar() *pb.ProgressBar {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top