Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 112 for stateful (0.12 sec)

  1. pkg/controller/statefulset/stateful_set_utils_test.go

    					claim.Name = "target-claim"
    					pod := v1.Pod{}
    					pod.Name = fmt.Sprintf("pod-%d", tc.ordinal)
    					pod.GetObjectMeta().SetUID("pod-123")
    					set := apps.StatefulSet{}
    					set.Name = "stateful-set"
    					set.GetObjectMeta().SetUID("ss-456")
    					set.Spec.PersistentVolumeClaimRetentionPolicy = &apps.StatefulSetPersistentVolumeClaimRetentionPolicy{
    						WhenScaled:  tc.scaleDownPolicy,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/common/deployment/echos.go

    		Service:         HeadlessSvc,
    		ServiceAccount:  true,
    		Headless:        true,
    		Ports:           ports.Headless(),
    		Subsets:         []echo.SubsetConfig{{}},
    		IncludeExtAuthz: c.IncludeExtAuthz,
    	}
    
    	stateful := echo.Config{
    		Service:         StatefulSetSvc,
    		ServiceAccount:  true,
    		Headless:        true,
    		StatefulSet:     true,
    		Ports:           ports.Headless(),
    		Subsets:         []echo.SubsetConfig{{}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. internal/grid/muxclient.go

    import (
    	"context"
    	"encoding/binary"
    	"errors"
    	"fmt"
    	"sync"
    	"sync/atomic"
    	"time"
    
    	xioutil "github.com/minio/minio/internal/ioutil"
    	"github.com/zeebo/xxh3"
    )
    
    // muxClient is a stateful connection to a remote.
    type muxClient struct {
    	MuxID              uint64
    	SendSeq, RecvSeq   uint32
    	LastPong           int64
    	BaseFlags          Flags
    	ctx                context.Context
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/OkHttpClientTest.kt

          .build()
        assertThat(original.interceptors.size).isEqualTo(0)
        assertThat(original.networkInterceptors.size).isEqualTo(0)
      }
    
      /**
       * When copying the client, stateful things like the connection pool are shared across all
       * clients.
       */
      @Test fun cloneSharesStatefulInstances() {
        val client = clientTestRule.newClient()
    
        // Values should be non-null.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerTest.groovy

                    manager.removeListener(new Object())
                }
            }
    
            then:
            executor.failure == null
        }
    
        def "cannot add a stateful listener after an event has been broadcast"() {
            given:
            manager.addListener(Stub(StatefulTestListener))
            def broadcaster = manager.getBroadcaster(StatefulTestListener)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/insert_calibration_statistics_saver.mlir

      return %2 : tensor<1x2x2x2xf32>
    }
    // CHECK-LABEL: @composite_conv2d_with_bias_and_relu6_fn_1
    // CHECK-NOT: "tf.CalibrationStatisticsSaver"
    
    // -----
    
    // Check the IfOp is set to stateful.
    module attributes {tf.versions = {bad_consumers = [], min_consumer = 12 : i32, producer = 1833 : i32}, tf_saved_model.semantics} {
      // CHECK-LABEL: func.func @serving_default
      // CHECK: "tf.If"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

    // with yield op and an empty block.
    mlir::TF::IfRegionOp CloneEmptyIfWithPredicate(mlir::TF::IfRegionOp if_region,
                                                   OpBuilder& builder) {
      // Mark op as stateful due to side-effecting communication ops added later.
      auto host_side_if = builder.create<mlir::TF::IfRegionOp>(
          if_region.getLoc(), llvm::SmallVector<Type, 4>{}, if_region.getCond(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apps/v1/types.go

    	// may be out of date by some window of time.
    	// +optional
    	Status StatefulSetStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
    }
    
    // PodManagementPolicyType defines the policy for creating pods under a stateful set.
    // +enum
    type PodManagementPolicyType string
    
    const (
    	// OrderedReadyPodManagement will create pods in strictly increasing order on
    	// scale up and strictly decreasing order on scale down, progressing only when
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/route/route.go

    		// This means we have more than one stateful config for the same route because of weighed destinations.
    		// We should just pick the first and give a warning.
    		if perSvcStatefulConfig != nil && statefulConfig != nil {
    			log.Warnf("More than one stateful config for the same route %s. Picking the first one.", routeName)
    			break
    		}
    		statefulConfig = perSvcStatefulConfig
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/Codecs.kt

            // we can still get them for the other codecs, for instance,
            // with deeply nested Lists, deeply nested Maps, etc.
            // The reentrant codec is stateful, and cannot be cached because of it.
            bind(reentrant(BeanCodec))
        }.build()
    
        fun userTypesCodec(): Codec<Any?> = userTypesBindings.completeWithStatefulCodecs()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 18.8K bytes
    - Viewed (0)
Back to top