Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 116 for practice (0.14 sec)

  1. pkg/scheduler/util/assumecache/assume_cache.go

    		indexers[indexName] = c.objInfoIndexFunc
    	}
    	c.store = cache.NewIndexer(objInfoKeyFunc, indexers)
    
    	// Unit tests don't use informers
    	if informer != nil {
    		// Cannot fail in practice?! No-one bothers checking the error.
    		_, _ = informer.AddEventHandler(
    			cache.ResourceEventHandlerFuncs{
    				AddFunc:    c.add,
    				UpdateFunc: c.update,
    				DeleteFunc: c.delete,
    			},
    		)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    // The death testing framework causes this to have interesting semantics,
    // since the sideeffects of the call are only visible in opt mode, and not
    // in debug mode.
    //
    // In practice, this can be used to test functions that utilize the
    // LOG(DFATAL) macro using the following style:
    //
    // int DieInDebugOr12(int* sideeffect) {
    //   if (sideeffect) {
    //     *sideeffect = 12;
    //   }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. src/cmd/go/main.go

    			base.Fatal(cfg.ExperimentErr)
    		}
    	}
    
    	// Set environment (GOOS, GOARCH, etc) explicitly.
    	// In theory all the commands we invoke should have
    	// the same default computation of these as we do,
    	// but in practice there might be skew
    	// This makes sure we all agree.
    	cfg.OrigEnv = toolchain.FilterEnv(os.Environ())
    	cfg.CmdEnv = envcmd.MkEnv()
    	for _, env := range cfg.CmdEnv {
    		if os.Getenv(env.Name) != env.Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/deadstore.go

    			return
    		}
    		if addr[v] == nil {
    			// The address of an auto reaches this op.
    			addr[v] = node
    			changed = true
    			return
    		}
    		if addr[v] != node {
    			// This doesn't happen in practice, but catch it just in case.
    			used.Add(node)
    			changed = true
    		}
    		return
    	}
    
    	iterations := 0
    	for {
    		if iterations == 4 {
    			// give up
    			return
    		}
    		iterations++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    image::plugin-portal-api-keys.png[]
    
    It is common practice to copy and paste the text into your <<build_environment.adoc#sec:gradle_configuration_properties,$HOME/.gradle/gradle.properties>> file, but you can also place it in any other valid location.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-ingress/values.yaml

        # ID post-install.
        #
        # If the mesh admin does not specify a value, Istio will use the value of the
        # mesh's Trust Domain. The best practice is to select a proper Trust Domain
        # value.
        meshID: ""
    
        # Use the user-specified, secret volume mounted key and certs for Pilot and workloads.
        mountMtlsCerts: false
    
        multiCluster:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/loopclosure.go

    }
    
    // parallelSubtest returns statements that can be easily proven to execute
    // concurrently via the go test runner, as t.Run has been invoked with a
    // function literal that calls t.Parallel.
    //
    // In practice, users rely on the fact that statements before the call to
    // t.Parallel are synchronous. For example by declaring test := test inside the
    // function literal, but before the call to t.Parallel.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. manifests/charts/gateways/istio-egress/values.yaml

        # ID post-install.
        #
        # If the mesh admin does not specify a value, Istio will use the value of the
        # mesh's Trust Domain. The best practice is to select a proper Trust Domain
        # value.
        meshID: ""
    
        # Use the user-specified, secret volume mounted key and certs for Pilot and workloads.
        mountMtlsCerts: false
    
        multiCluster:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/language/match.go

    //   5) Distance from want tag to have tag using the parent relation [see Note 5.]
    // If there is still no winner after these rules are applied, the first match
    // found wins.
    //
    // Notes:
    // [2] In practice, as matching of Exact is done in a separate phase from
    //     matching the other levels, we reuse the Exact level to mean MaxExact in
    //     the second phase. As a consequence, we only need the levels defined by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize.cc

          return quant_specs_.input_ranges[index];
        } else {
          return {0.0, 255.0};
        }
      }
    
      // Apply some sanity check and report some warnings for those who don't follow
      // the best quantization practice. This also fixes some simple violations.
      void SanityCheckAndAdjustment(func::FuncOp func);
    
      // Whether the func contains Quantize ops. This is used to determine whether
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top