Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 63 for untouched (0.23 sec)

  1. src/runtime/trace.go

    	// given that we have traceAcquire and traceRelease. Unfortunately, those only help
    	// us when tracing is already active (for performance, so when tracing is off the
    	// tracing seqlock is left untouched). The main issue here is subtle: we're going to
    	// want to obtain a correct starting status for each goroutine, but there are windows
    	// of time in which we could read and emit an incorrect status. Specifically:
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  2. pkg/kube/inject/webhook.go

    			log.Warn("Could not find the istio-proxy container")
    			return
    		}
    		*sidecar.SecurityContext.RunAsUser = 0
    	}
    
    	// Make sure the validation container runs with the same uid/gid as the proxy (init container is untouched, it must run with 0)
    	if !tproxy && initContainer.Name == ValidationContainerName {
    		if initContainer.SecurityContext == nil {
    			initContainer.SecurityContext = &corev1.SecurityContext{}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  3. src/cmd/internal/dwarf/dwarf.go

    }
    
    var abbrevsFinalized bool
    
    // expandPseudoForm takes an input DW_FORM_xxx value and translates it
    // into a platform-appropriate concrete form. Existing concrete/real
    // DW_FORM values are left untouched. For the moment the only
    // pseudo-form is DW_FORM_udata_pseudo, which gets expanded to
    // DW_FORM_data4 on Darwin and DW_FORM_udata everywhere else. See
    // issue #31459 for more context.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  4. pkg/controller/disruption/disruption_test.go

    		"p2":       {Time: currentTime.Add(-3 * time.Minute)}, // Should be removed, expired.
    		"p3":       {Time: currentTime.Add(-time.Minute)},     // Should remain, pod untouched.
    		"notthere": {Time: currentTime},                       // Should be removed, pod deleted.
    	}
    	add(t, dc.pdbStore, pdb)
    
    	pod1, _ := newPod(t, "p1")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apps/v1/types.go

    	// Partition indicates the ordinal at which the StatefulSet should be partitioned
    	// for updates. During a rolling update, all pods from ordinal Replicas-1 to
    	// Partition are updated. All pods from ordinal Partition-1 to 0 remain untouched.
    	// This is helpful in being able to do a canary based deployment. The default value is 0.
    	// +optional
    	Partition *int32 `json:"partition,omitempty" protobuf:"varint,1,opt,name=partition"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    ----
    -Dorg.gradle.configuration-cache=true -Dorg.gradle.configuration-cache.problems=warn
    ----
    
    You can also choose to only enable it for a given run configuration.
    In this case, leave the `Templates > Gradle` configuration untouched and edit each run configuration as you see fit.
    
    Combining these two ways you can enable globally and disable for certain run configurations, or the opposite.
    
    [TIP]
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    		deleteConfigs([]*config.Config{httpStaticOverlayUpdated}, store, t)
    		expectServiceInstances(t, sd, httpStatic, 0, baseInstances)
    		// Check the other namespace is untouched
    		instances := []*model.ServiceInstance{
    			makeInstance(httpStaticOverlayUpdatedNs, "5.5.5.5", 4567, httpStaticOverlayUpdatedNs.Spec.(*networking.ServiceEntry).Ports[0], map[string]string{"overlay": "bar"}, PlainText),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize_composite_functions.mlir

      }
    // CHECK: func.func private @composite_dot_general_fn(%[[ARG_1:.+]]: tensor<1x2xf32>, %[[ARG_2:.+]]: tensor<2x3xf32>) -> tensor<1x3xf32> attributes {_from_xla_call_module}
    // Check that the composite_dot_general_fn is untouched.
    // CHECK: %[[DOT_GENERAL_0:.+]] = stablehlo.dot_general %[[ARG_1]], %[[ARG_2]]
    // CHECK: return %[[DOT_GENERAL_0]]
    }
    
    // -----
    
    // Tests that basic `stablehlo.gather` is properly quantized.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 91.6K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/horizontal_test.go

    			scalingRules:           generateScalingRules(10, 60, 100, 60, 0),
    			expectedReplicasChange: 0,
    		},
    		{
    			name:          "one outdated entry to be kept untouched without behavior",
    			replicaChange: 5,
    			prevScaleEvents: []timestampedScaleEvent{
    				{7, time.Now().Add(-time.Second * time.Duration(61)), false}, // outdated event, should be replaced
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      if (!DeviceNameUtils::ParseFullName(node_def.device(), &parsed_name)) {
        return errors::InvalidArgument(
            "Op ", op_name, " has invalid device name: ", node_def.device());
      }
      // Keep the parsed name untouched if the device name is empty.
      if (!node_def.device().empty()) {
        if (!parsed_name.has_type) {
          parsed_name.type = "CPU";
          parsed_name.has_type = true;
        }
        if (!parsed_name.has_id) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top