Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 870 for simplify (0.19 sec)

  1. src/cmd/go/testdata/script/test_json_issue35169.txt

    ! go test -json .
    
    	# We should see only JSON output on stdout, no non-JSON.
    	# To simplify the check, we just look for non-curly-braces, since
    	# every JSON entry has them and they're unlikely to occur
    	# in other error messages.
    ! stdout '^[^{]'
    ! stdout '[^}]\n$'
    
    	# Since the only test we requested failed to build, we should
    	# not see any "pass" actions in the JSON stream.
    ! stdout '\{.*"Action":"pass".*\}'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 20:29:21 UTC 2023
    - 804 bytes
    - Viewed (0)
  2. manifests/addons/values-prometheus.yaml

    # To simplify the deployment, disable non-essential components
    alertmanager:
      enabled: false
    prometheus-pushgateway:
      enabled: false
    kube-state-metrics:
      enabled: false
    prometheus-node-exporter:
      enabled: false
    server:
      podLabels:
        sidecar.istio.io/inject: "false"
      persistentVolume:
        enabled: false
      # Use port 9090 to match Istio documentation
      service:
        servicePort: 9090
      readinessProbeInitialDelay: 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 03:42:22 UTC 2023
    - 788 bytes
    - Viewed (0)
  3. src/cmd/gofmt/doc.go

    		If a file's formatting is different from gofmt's, print its name
    		to standard output.
    	-r rule
    		Apply the rewrite rule to the source before reformatting.
    	-s
    		Try to simplify code (after applying the rewrite rule, if any).
    	-w
    		Do not print reformatted sources to standard output.
    		If a file's formatting is different from gofmt's, overwrite it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/list_import_err.txt

    # Test that errors importing packages are reported on the importing package,
    # not the imported package.
    
    env GO111MODULE=off # simplify vendor layout for test
    
    go list -e -deps -f '{{.ImportPath}}: {{.Error}}' ./importvendor
    stdout 'importvendor: importvendor[\\/]p.go:2:8: vendor/p must be imported as p'
    stdout 'vendor/p: <nil>'
    
    go list -e -deps -f '{{.ImportPath}}: {{.Error}}' ./importinternal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 10 20:27:52 UTC 2023
    - 771 bytes
    - Viewed (0)
  5. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModuleOutOfBlockModificationListener.kt

         * modifications.
         *
         * This event may be published for any and all source code changes, not just out-of-block modifications, to simplify the implementation
         * of modification detection.
         *
         * @see KotlinModificationTopics
         */
        public fun onModification(module: KtModule)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 987 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/PPC64latelower.rules

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file contains rules used by the laterLower pass.
    
    // Simplify ISEL x $0 z into ISELZ
    (ISEL [a] x (MOVDconst [0]) z) => (ISELZ [a] x z)
    // Simplify ISEL $0 y z into ISELZ by inverting comparison and reversing arguments.
    (ISEL [a] (MOVDconst [0]) y z) => (ISELZ [a^0x4] y z)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/networking/v1alpha1/well_known_labels.go

    	// TODO: Use IPFamily as field with a field selector,And the value is set based on
    	// the name at create time and immutable.
    	// LabelIPAddressFamily is used to indicate the IP family of a Kubernetes IPAddress.
    	// This label simplify dual-stack client operations allowing to obtain the list of
    	// IP addresses filtered by family.
    	LabelIPAddressFamily = "ipaddress.kubernetes.io/ip-family"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 22:56:44 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/passes.td

      let constructor = "CreateOutlineCompositesPass()";
      let dependentDialects = ["mlir::chlo::ChloDialect", "mlir::stablehlo::StablehloDialect", "mlir::func::FuncDialect"];
    }
    
    def SHLOSimplifyPass: Pass<"shlo-simplify", "ModuleOp"> {
      let summary = "Apply internal canonicalizations and foldings.";
      let description = [{
        Applies various internally defined patterns.
      }];
    
      let options = [
    
      ];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:05:30 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/386enc.s

    // license that can be found in the LICENSE file.
    
    #include "../../../../../runtime/textflag.h"
    
    TEXT asmtest(SB),DUPOK|NOSPLIT,$0
    	// Instructions that were encoded with BYTE sequences.
    	// Included to simplify validation of CL that fixed that.
    	MOVQ (AX), M0  // 0f6f00
    	MOVQ M0, 8(SP) // 0f7f442408
    	MOVQ 8(SP), M0 // 0f6f442408
    	MOVQ M0, (AX)  // 0f7f00
    	MOVQ M0, (BX)  // 0f7f03
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. pilot/pkg/config/monitor/README.md

    ### Start behavior
    
    The `Start` method will immediately check the provided `getSnapshotFunc` and update the controller appropriately
    before returning. This helps to simplify tests that rely on starting in a particular state.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 2.1K bytes
    - Viewed (0)
Back to top