Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 384 for partitioned (0.23 sec)

  1. pkg/apis/apps/v1beta2/conversion_test.go

    		}
    	}
    }
    
    func TestV1beta2StatefulSetUpdateStrategyConversion(t *testing.T) {
    	partition := utilpointer.Int32(2)
    	v1beta2rollingUpdate := new(v1beta2.RollingUpdateStatefulSetStrategy)
    	v1beta2rollingUpdate.Partition = partition
    	appsrollingUpdate := new(apps.RollingUpdateStatefulSetStrategy)
    	appsrollingUpdate.Partition = *partition
    	testcases := map[string]struct {
    		stsUpdateStrategy1 *apps.StatefulSetUpdateStrategy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  2. ci/official/utilities/setup_macos.sh

    # inside this directory. TF Mac builds need ~150 GB of disk space to be able to
    # run all the tests. Since TFCI Mac VMs execute Bazel test commands in a
    # partition with insufficient storage, we specify the
    # 'TFCI_MACOS_BAZEL_TEST_DIR_PATH' environment variable to point to a partition
    # with ample storage. When this variable is empty (i.e by default), Bazel will
    # use the output base directory to run tests.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 15:23:28 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. src/net/ipsock_test.go

    			}
    			continue
    		}
    		first := addrs.first(isIPv4)
    		if !reflect.DeepEqual(first, tt.first) {
    			t.Errorf("#%v: got %v; want %v", i, first, tt.first)
    		}
    		primaries, fallbacks := addrs.partition(isIPv4)
    		if !reflect.DeepEqual(primaries, tt.primaries) {
    			t.Errorf("#%v: got %v; want %v", i, primaries, tt.primaries)
    		}
    		if !reflect.DeepEqual(fallbacks, tt.fallbacks) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 15 22:22:09 UTC 2017
    - 6.8K bytes
    - Viewed (0)
  4. ci/official/wheel_test/test_import_api_packages.py

            "tensorflow.distribute.experimental.coordinator",
            "tensorflow.summary.experimental",
            "tensorflow.distribute.coordinator",
            "tensorflow.distribute.experimental.partitioners",
        ]
    
      def test_import_runtime(self):
        """Try to import all packages from api packages file one by one."""
        version = "v2"
        failed_packages = []
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 13 15:52:07 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/zip.kt

        var directories: List<File> = listOf(this@walkReproducibly)
        while (directories.isNotEmpty()) {
            val subDirectories = mutableListOf<File>()
            directories.forEach { dir ->
                dir.listFilesOrdered().partition { it.isDirectory }.let { (childDirectories, childFiles) ->
                    yieldAll(childFiles)
                    childDirectories.let {
                        yieldAll(it)
                        subDirectories.addAll(it)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 31 20:39:17 UTC 2023
    - 3.5K bytes
    - Viewed (1)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/signatures/KtVariableLikeSignature.kt

            val allParameterNameAnnotations = returnType.annotations[StandardNames.FqNames.parameterNameClassId]
            val (explicitAnnotations, implicitAnnotations) = allParameterNameAnnotations.partition { it.psi != null }
    
            return if (explicitAnnotations.isNotEmpty()) {
                explicitAnnotations.first()
            } else {
                implicitAnnotations.singleOrNull()
            }
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    		delete(patch, originalKey)
    	}
    	return nil
    }
    
    // partitionPrimitivesByPresentInList partitions elements into 2 slices, the first containing items present in partitionBy, the other not.
    func partitionPrimitivesByPresentInList(original, partitionBy []interface{}) ([]interface{}, []interface{}) {
    	patch := make([]interface{}, 0, len(original))
    	serverOnly := make([]interface{}, 0, len(original))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/counter/doc.go

    //
    //   - Names may contain at most one ':'. In the counter "foo:bar", we refer to
    //     "foo" as the "chart name" and "bar" as the "bucket name".
    //
    //   - The '/' character should partition counter names into a hierarchy. The
    //     root of this hierarchy should identify the logical entity that "owns"
    //     the counter. This could be an application, such as "gopls" in the case
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. pkg/controller/statefulset/stateful_set_control_test.go

    			if set.Status.CurrentReplicas < *set.Spec.Replicas {
    				return false
    			}
    			for i := range pods {
    				if getPodRevision(pods[i]) != set.Status.CurrentRevision {
    					return false
    				}
    			}
    		} else {
    			partition := int(*set.Spec.UpdateStrategy.RollingUpdate.Partition)
    			if len(pods) < partition {
    				return false
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  10. src/image/color/palette/gen.go

    					}
    					lines[i+(j&0x0f)] =
    						fmt.Sprintf("\tcolor.RGBA{0x%02x, 0x%02x, 0x%02x, 0xff},", c[0], c[1], c[2])
    				}
    			}
    		}
    	}
    	fmt.Fprintln(w, "// Plan9 is a 256-color palette that partitions the 24-bit RGB space")
    	fmt.Fprintln(w, "// into 4×4×4 subdivision, with 4 shades in each subcube. Compared to the")
    	fmt.Fprintln(w, "// WebSafe, the idea is to reduce the color resolution by dicing the")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.5K bytes
    - Viewed (0)
Back to top