Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 166 for effects (0.21 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #  define GTEST_HAS_EXCEPTIONS 1
    # elif defined(__IBMCPP__) && __EXCEPTIONS
    // xlC defines __EXCEPTIONS to 1 iff exceptions are enabled.
    #  define GTEST_HAS_EXCEPTIONS 1
    # elif defined(__HP_aCC)
    // Exception handling is in effect by default in HP aCC compiler. It has to
    // be turned of by +noeh compiler option if desired.
    #  define GTEST_HAS_EXCEPTIONS 1
    # else
    // For other compilers, we assume exceptions are disabled to be
    // conservative.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. tests/integration/ambient/baseline_test.go

    kind: AuthorizationPolicy
    metadata:
      name: policy-waypoint
    spec:
      targetRefs:
      # affects Waypoints
      - kind: Service
        group: core
        name: "{{ .Destination }}"
    `+tc.spec+`
    ---
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: policy
    spec:
      # affects zTunnels and Sidecars
      selector:
        matchLabels:
          app: "{{ .Destination }}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/devicemanager/manager_test.go

    		{ID: "Device3", Health: pluginapi.Unhealthy},
    	}
    	callback := testManager.genericDeviceUpdateCallback
    
    	// Adds three devices for resource1, two healthy and one unhealthy.
    	// Expects capacity for resource1 to be 2.
    	resourceName1 := "domain1.com/resource1"
    	e1 := &endpointImpl{}
    	testManager.endpoints[resourceName1] = endpointInfo{e: e1, opts: nil}
    	callback(resourceName1, devs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue.go

    // isPodUpdated checks if the pod is updated in a way that it may have become
    // schedulable. It drops status of the pod and compares it with old version,
    // except for pod.status.resourceClaimStatuses: changing that may have an
    // effect on scheduling.
    func isPodUpdated(oldPod, newPod *v1.Pod) bool {
    	strip := func(pod *v1.Pod) *v1.Pod {
    		p := pod.DeepCopy()
    		p.ResourceVersion = ""
    		p.Generation = 0
    		p.Status = v1.PodStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.31.md

    - Fix "-kube-test-repo-list" e2e flag may not take effect ([#123587](https://github.com/kubernetes/kubernetes/pull/123587), [@huww98](https://github.com/huww98)) [SIG API Machinery, Apps, Autoscaling, CLI, Network, Node, Scheduling, Storage, Testing and Windows]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    			Kind:      kind.PeerAuthentication,
    			Name:      selectorPolicyName,
    			Namespace: "ns1",
    		}))})
    
    	// Pod not in selector policy, but namespace policy should take effect (hence static policy)
    	s.addPods(t, "127.0.0.2", "pod2", "sa1", map[string]string{"app": "not-a"}, nil, true, corev1.PodRunning)
    	s.assertEvent(t, s.podXdsName("pod2"))
    	assert.Equal(t,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    //
    //	operator_name ::= many different two character encodings.
    //	              ::= cv <type>
    //	              ::= v <digit> <source-name>
    //
    // We need to know whether we are in an expression because it affects
    // how we handle template parameters in the type of a cast operator.
    func (st *state) operatorName(inExpression bool) (AST, int) {
    	if len(st.str) < 2 {
    		st.fail("missing operator code")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    include::sample[dir="snippets/kotlinDsl/interoperability-closure-of/kotlin",files="build.gradle.kts[tags=closureOf]"]
    ====
    
    In other cases, like with the link:{plugin-portal}plugin/org.gretty[Gretty Plugin] when configuring farms, the plugin expects a delegate closure:
    
    .Use `delegateClosureOf<T> {}`
    ====
    include::sample[dir="snippets/kotlinDsl/interoperability-delegate-closure-of/kotlin",files="build.gradle.kts[tags=delegateClosureOf]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                }
    
                assert params.initial.get() == 10
                params.initial = 12
    
                task first {
                    doFirst {
                        params.initial = 15 // should have an effect
                        provider.get().reset()
                        params.initial = 1234 // should be ignored. Ideally should fail too
                    }
                }
    
                task second {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  10. src/cmd/cgo/gcc.go

    			tt := *t
    			tt.C = &TypeRepr{"%s %s", []interface{}{dt.Kind, tag}}
    			// We don't know what the representation of this struct is, so don't let
    			// anyone allocate one on the Go side. As a side effect of this annotation,
    			// pointers to this type will not be considered pointers in Go. They won't
    			// get writebarrier-ed or adjusted during a stack copy. This should handle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top