Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for Helvert (0.21 sec)

  1. src/log/slog/example_log_level_test.go

    // of the internal default handler for slog package before calling slog.SetDefault.
    func ExampleSetLogLoggerLevel_log() {
    	defer log.SetFlags(log.Flags()) // revert changes after the example
    	log.SetFlags(0)
    	defer log.SetOutput(log.Writer()) // revert changes after the example
    	log.SetOutput(os.Stdout)
    
    	// Default logging level is slog.LevelInfo.
    	log.Print("log debug") // log debug
    	slog.Debug("debug")    // no output
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 21:25:30 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. releasenotes/notes/targetPort-service-entry.yaml

        This is particularly useful when doing TLS origination, allowing to set `port:80, targetPort: 443`.
        If undesired set `--compatibilityVersion=1.21` to revert to the old behavior, or remove the `targetPort` specification.
    upgradeNotes:
      - title: "`ServiceEntry` with `resolution: NONE` now respects `targetPort`"
        content: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 18:26:17 UTC 2024
    - 794 bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/InputTrackingStateTest.kt

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. hack/verify-external-dependencies-version.sh

    export GOBIN="${KUBE_OUTPUT_BIN}"
    PATH="${GOBIN}:${PATH}"
    
    # Install zeitgeist
    go install sigs.k8s.io/zeitgeist@v0.5.3
    
    # Prefer full path for running zeitgeist
    ZEITGEIST_BIN="$(which zeitgeist)"
    
    # TODO: revert sed hack when zetigeist respects CLICOLOR/ttys
    CLICOLOR=0 "${ZEITGEIST_BIN}" validate \
      --local-only \
      --base-path "${KUBE_ROOT}" \
      --config "${KUBE_ROOT}"/build/dependencies.yaml \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 08:20:31 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. doc/next/6-stdlib/1-time.md

    is in a module with a `go.mod` `go` line using Go 1.23.0 or later.
    When Go 1.23 builds older programs, the old behaviors remain in effect.
    The new [GODEBUG setting](/doc/godebug) [`asynctimerchan=1`](/pkg/time/#NewTimer)
    can be used to revert back to asynchronous channel behaviors
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 20:49:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. pkg/registry/core/service/storage/alloc.go

    			nodePortOp.Finish()
    		},
    		revert: func() {
    			// Weirdly named but this will revert if commit wasn't called
    			nodePortOp.Finish()
    		},
    	}
    
    	// Allocate NodePorts, if needed.
    	if service.Spec.Type == api.ServiceTypeNodePort || service.Spec.Type == api.ServiceTypeLoadBalancer {
    		if err := initNodePorts(service, nodePortOp); err != nil {
    			txn.Revert()
    			return nil, err
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K bytes
    - Viewed (0)
  7. hack/lint-dependencies.sh

      select(.Path != .Replace.Path) |
      select(.Path) |
      \"  \(.Path) is replaced with \(.Replace.Path)\"
    ")
    if [[ -n "${noncanonical}" ]]; then
      echo ""
      echo "These modules are pinned to non-canonical repos."
      echo "Revert to using the canonical repo for these modules before merge"
      echo ""
      echo "${noncanonical}"
    fi
    
    unused=$(comm -23 \
      <(go mod edit -json | jq -r '.Replace[] | select(.New.Version != null) | .Old.Path' | sort) \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:42 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. src/log/slog/logger_test.go

    	check(`level=INFO msg=info a.i=1`)
    
    	l.Info("info", "a", GroupValue(Int("i", 1)))
    	check(`level=INFO msg=info a.i=1`)
    }
    
    func TestConnections(t *testing.T) {
    	var logbuf, slogbuf bytes.Buffer
    
    	// Revert any changes to the default logger. This is important because other
    	// tests might change the default logger using SetDefault. Also ensure we
    	// restore the default logger at the end of the test.
    	currentLogger := Default()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 21:25:30 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    							"maxField": "valuewithlength17",
    						}}},
    				expectError{
    					applyPatchOperation{
    						"revert minFIeld to previously ratcheted value",
    						myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    							"minField": "value",
    						}}},
    				expectError{
    					applyPatchOperation{
    						"revert maxField to previously ratcheted value",
    						myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ExternalModuleDependencyMetadata.java

         *
         * Use attribute matching to choose a single variant when the target component has variants,
         * otherwise revert to legacy selection of target configurations.
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top