Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 85 for workaround (0.34 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	tCtx := ktesting.Init(t)
    	tc.ctx = tCtx
    
    	tc.client = fake.NewSimpleClientset(objs...)
    	reactor := createReactor(tc.client.Tracker())
    	tc.client.PrependReactor("*", "*", reactor)
    
    	// Quick-and-dirty workaround for fake client storing ResourceClassParameters and
    	// ResourceClaimParameters as "resourceclassparameterses" and "resourceclaimparameterses":
    	// intercept the correct LIST from the informers and reply to them with the incorrect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  2. pilot/pkg/model/service.go

    		return false
    	}
    	return true
    }
    
    // GetLocalityLabel returns the locality from the supplied label. Because Kubernetes
    // labels don't support `/`, we replace "." with "/" in the supplied label as a workaround.
    func GetLocalityLabel(label string) string {
    	return pm.GetLocalityLabel(label)
    }
    
    // Locality information for an IstioEndpoint
    type Locality struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		}
    		switch status.State {
    		case kubecontainer.ContainerStateCreated,
    			kubecontainer.ContainerStateRunning:
    			podHasInitialized = true
    		case kubecontainer.ContainerStateExited:
    			// This is a workaround for the issue that the kubelet cannot
    			// differentiate the container statuses of the previous podSandbox
    			// from the current one.
    			// If the node is rebooted, all containers will be in the exited
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

      if [ "${nvmeblocknum}" -eq "0" ] && [ "${nvmefsnum}" -eq "0" ]; then
        echo "No local NVMe SSD specified."
        return
      fi
      local i=0
      for ssd in /dev/nvme*; do
        if [ -e "${ssd}" ]; then
          # This workaround to find if the NVMe device is a disk is required because
          # the existing Google images does not expose NVMe devices in /dev/disk/by-id
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFile.java

            }
        }
    
    
        private static String encodeRelativePath ( String name ) {
            // workaround fix
            if (name == null) {
                return null;
            }
            if (name.endsWith(" ")) {
                final StringBuilder suffix = new StringBuilder();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  6. tests/integration/ambient/baseline_test.go

    				opt.HTTP.Path = "/healthz"
    				opt.Check = check.OK()
    				src.CallOrFail(t, opt)
    			})
    		})
    	})
    }
    
    func applyDrainingWorkaround(t framework.TestContext) {
    	// Workaround https://github.com/istio/istio/issues/43239
    	t.ConfigIstio().YAML(apps.Namespace.Name(), `apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: single-request
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  7. src/runtime/malloc.go

    				// systems so that objects whose first field is a 64-bit
    				// value is aligned to 8 bytes and does not cause a fault on
    				// atomic access. See issue 37262.
    				// TODO(mknyszek): Remove this workaround if/when issue 36606
    				// is resolved.
    				off = alignUp(off, 8)
    			} else if size&3 == 0 {
    				off = alignUp(off, 4)
    			} else if size&1 == 0 {
    				off = alignUp(off, 2)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_test.go

    	//
    	// It is very common for the catch all egress listener to match services on ports 80 and 443.
    	// Therefore, the default behavior should not force users to start from looking for a workaround.
    	t.Run("implicit catch all egress listener", func(t *testing.T) {
    		testPrivilegedPorts(t, func(t *testing.T, proxy *model.Proxy, port uint32) []*listener.Listener {
    			return buildListeners(t, TestOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  9. pkg/volume/util/operationexecutor/operation_generator.go

    	rsOpts.VolumeSpec = volumeToMount.VolumeSpec
    
    	_, resizeErr := expandableVolumePlugin.NodeExpand(rsOpts)
    	if resizeErr != nil {
    		// This is a workaround for now, until RecoverFromVolumeExpansionFailure feature goes GA.
    		// If RecoverFromVolumeExpansionFailure feature is enabled, we will not ever hit this state, because
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  10. cmd/erasure-server-pool.go

    		// and throw a 404 exception. This is especially a problem for spark jobs overwriting the same partition
    		// repeatedly. This workaround recursively lists the top 3 entries including delete markers to reflect the
    		// correct state of the directory in the list results.
    		if strings.HasSuffix(opts.Prefix, SlashSeparator) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
Back to top