Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 93 for Helvert (0.14 sec)

  1. pkg/registry/core/service/storage/transaction_test.go

    				},
    				revert: func() {
    					temp = temp - 1
    				},
    			},
    			callbackTransaction{
    				commit: func() {
    					temp = temp + 2
    				},
    				revert: func() {
    					temp = temp - 2
    				},
    			},
    			callbackTransaction{
    				commit: func() {
    					temp = temp + 3
    				},
    				revert: func() {
    					temp = temp - 3
    				},
    			},
    		},
    		want: 10,
    	}, {
    		name: "missing revert",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 11 17:49:37 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. pkg/registry/core/service/storage/transaction.go

    	}
    }
    
    func (mt metaTransaction) Revert() {
    	for _, t := range mt {
    		t.Revert()
    	}
    }
    
    // callbackTransaction is a transaction which calls arbitrary functions.
    type callbackTransaction struct {
    	commit func()
    	revert func()
    }
    
    func (cb callbackTransaction) Commit() {
    	if cb.commit != nil {
    		cb.commit()
    	}
    }
    
    func (cb callbackTransaction) Revert() {
    	if cb.revert != nil {
    		cb.revert()
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 11 17:49:37 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  5. 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)
  6. staging/src/k8s.io/apiserver/pkg/util/openapi/enablement.go

    )
    
    // enumTypeDescriptionHeader is the header of enum section in schema description.
    const enumTypeDescriptionHeader = "Possible enum values:"
    
    // GetOpenAPIDefinitionsWithoutDisabledFeatures wraps a GetOpenAPIDefinitions to revert
    // any change to the schema that was made by disabled features.
    func GetOpenAPIDefinitionsWithoutDisabledFeatures(GetOpenAPIDefinitions common.GetOpenAPIDefinitions) common.GetOpenAPIDefinitions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 06 17:24:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. releasenotes/notes/http2-probes.yaml

    releaseNotes:
    - |
      **Added** support for ALPN negotiation to Istio [health checks](https://istio.io/latest/docs/ops/configuration/mesh/app-health-check/), mirroring
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 08 19:15:41 UTC 2022
    - 440 bytes
    - Viewed (0)
  8. src/testing/iotest/logger_test.go

    	err error
    }
    
    func (w errWriter) Write([]byte) (int, error) {
    	return 0, w.err
    }
    
    func TestWriteLogger(t *testing.T) {
    	olw := log.Writer()
    	olf := log.Flags()
    	olp := log.Prefix()
    
    	// Revert the original log settings before we exit.
    	defer func() {
    		log.SetFlags(olf)
    		log.SetPrefix(olp)
    		log.SetOutput(olw)
    	}()
    
    	lOut := new(strings.Builder)
    	log.SetPrefix("lw: ")
    	log.SetOutput(lOut)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 07:03:10 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/compiler/mlir/tensorflow/tests/tpu-annotate-dynamic-shape-inputs.mlir

      // TODO(b/292540052): Below tf.addV2 instruction is replaced with just
      // returning arg0 due to the workaround mentioned in the above bug. Revert
      // this after the bug is fixed.
        // %0 = "tf.AddV2"(%arg0, %arg1) : (tensor<2048xi32>, tensor<2048xi32>) -> tensor<2048xi32>
        return %arg0 : tensor<2048xi32>
       }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top