Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 52 for natures (0.22 sec)

  1. cmd/metrics-v2.go

    	Subsystem MetricSubsystem `json:"Subsystem"`
    	Name      MetricName      `json:"MetricName"`
    	Help      string          `json:"Help"`
    	Type      MetricTypeV2    `json:"Type"`
    }
    
    // MetricV2 captures the details for a metric
    type MetricV2 struct {
    	Description          MetricDescription `json:"Description"`
    	StaticLabels         map[string]string `json:"StaticLabels"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        outputs. Thus, inter iteration control dependencies are transformed to
        data dependencies. Since data dependencies can express which particular
        operations in the while loop body are dependent on which inputs, it captures
        inter iteration parallelism in while loop. Control dependencies on the other
        hand create a barrier at the end of while loop body thus blocking any
        parallelism across iterations.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

          // o = (i-k+1) + (s-1)(i-1) + P
          // Where the first term is the kernel applications on the input,
          // the second term is the additional applications from the stride
          // and P is a term that captures the total padding. After expanding we get
          // o = si + k - s + 2 + P
          // Here JAX sets P to cancel k-s+2, leading to the expression below
          if (output_size != input_size * stride) {
            return false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  4. tests/integration/pilot/common/routing.go

    	})
    }
    
    func virtualServiceCases(t TrafficContext) {
    	// reduce the total # of subtests that don't give valuable coverage or just don't work
    	// TODO include proxyless as different features become supported
    	t.SetDefaultSourceMatchers(match.NotNaked, match.NotHeadless, match.NotProxylessGRPC)
    	t.SetDefaultTargetMatchers(match.NotNaked, match.NotHeadless, match.NotProxylessGRPC)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    		"internal/abi",         // used by reflectcall (and maybe more)
    		"internal/bytealg",     // for IndexByte
    		"internal/chacha8rand", // for rand
    		"internal/cpu":         // for cpu features
    		return true
    	}
    	return strings.HasPrefix(pkg, "runtime/internal/") && !strings.HasSuffix(pkg, "_test")
    }
    
    // Estimate the max size needed to hold any new trampolines created for this function. This
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

        # split GCE_ALPHA_FEATURES into an array by comma.
        IFS=',' read -r -a alpha_features <<< "${GCE_ALPHA_FEATURES}"
        for feature in "${alpha_features[@]}"; do
          cat <<EOF >>/etc/gce.conf
    alpha-features = ${feature}
    EOF
        done
      fi
      if [[ -n "${SECONDARY_RANGE_NAME:-}" ]]; then
        use_cloud_config="true"
        cat <<EOF >> /etc/gce.conf
    secondary-range-name = ${SECONDARY_RANGE_NAME}
    EOF
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    	}),
    	cmp.Comparer(func(p1, p2 criticalPaths) bool {
    		p1.sort()
    		p2.sort()
    		return p1[0] == p2[0] && p1[1] == p2[1]
    	}),
    }
    
    var (
    	topologySpreadFunc = frameworkruntime.FactoryAdapter(feature.Features{}, New)
    	ignorePolicy       = v1.NodeInclusionPolicyIgnore
    	honorPolicy        = v1.NodeInclusionPolicyHonor
    	fooSelector        = st.MakeLabelSelector().Exists("foo").Obj()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    	"k8s.io/apiextensions-apiserver/pkg/apiserver/schema"
    	"k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model"
    	apiextensionsfeatures "k8s.io/apiextensions-apiserver/pkg/features"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	"k8s.io/apimachinery/pkg/util/yaml"
    	celconfig "k8s.io/apiserver/pkg/apis/cel"
    	"k8s.io/apiserver/pkg/cel/common"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  9. fastapi/applications.py

                    So you could override this value to trick those tools into using
                    the generated OpenAPI. Have in mind that this is a hack. But if you
                    avoid using features added in OpenAPI 3.1.0, it might work for your
                    use case.
    
                    This is not passed as a parameter to the `FastAPI` class to avoid
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  10. cluster/gce/util.sh

      flags+=" --proxy-mode=kernelspace"
    
      # Configure kube-proxy to run as a windows service.
      flags+=" --windows-service=true"
    
      # Enabling Windows DSR mode unlocks newer network features and reduces
      # port usage for services.
      # https://techcommunity.microsoft.com/t5/networking-blog/direct-server-return-dsr-in-a-nutshell/ba-p/693710
      if [[ "${WINDOWS_ENABLE_DSR:-}" == "true" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top