Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 274 for subreg (0.33 sec)

  1. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningSamplesSpec.groovy

            then:
            projectDir.file('build/distributions/stuff.zip.asc').exists()
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
        @UsesSample('signing/in-memory-subkey')
        def "uses in-memory PGP subkeys with dsl #dsl"() {
            given:
            def projectDir = sample.dir.file(dsl)
            inDirectory(projectDir)
    
            when:
            executer.withEnvironmentVars([
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. pkg/kube/krt/README.md

    Today, users can do this manually by making a transformation from the full object to a subset of the object.
    
    This could be improved by:
    * Automagically detecting which subset of the object is used, and optimize this behind the scenes. This seems unrealistic, though.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/addons/dns/dns_test.go

    		isDualStack                    bool
    	}{
    		{
    			name:          "subnet mask 12",
    			svcSubnet:     "10.96.0.0/12",
    			expectedDNSIP: "10.96.0.10",
    		},
    		{
    			name:          "subnet mask 26",
    			svcSubnet:     "10.87.116.64/26",
    			expectedDNSIP: "10.87.116.74",
    		},
    		{
    			name:          "dual-stack ipv4 primary, subnet mask 26",
    			svcSubnet:     "10.87.116.64/26,fd03::/112",
    			expectedDNSIP: "10.87.116.74",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableRangeSet.java

              }
              return elemItr.next();
            }
          };
        }
    
        ImmutableSortedSet<C> subSet(Range<C> range) {
          return subRangeSet(range).asSet(domain);
        }
    
        @Override
        ImmutableSortedSet<C> headSetImpl(C toElement, boolean inclusive) {
          return subSet(Range.upTo(toElement, BoundType.forBoolean(inclusive)));
        }
    
        @Override
        ImmutableSortedSet<C> subSetImpl(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/wasm/ssa.go

    			// deferreturn must itself be a resumption
    			// point so it gets a target PC.
    			s.Prog(wasm.ARESUMEPOINT)
    		}
    		if v.Op == ssa.OpWasmLoweredClosureCall {
    			getValue64(s, v.Args[1])
    			setReg(s, wasm.REG_CTXT)
    		}
    		if call, ok := v.Aux.(*ssa.AuxCall); ok && call.Fn != nil {
    			sym := call.Fn
    			p := s.Prog(obj.ACALL)
    			p.To = obj.Addr{Type: obj.TYPE_MEM, Name: obj.NAME_EXTERN, Sym: sym}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  6. istioctl/pkg/describe/describe_test.go

    					ObjectMeta: metav1.ObjectMeta{
    						Name:      "productpage",
    						Namespace: "default",
    					},
    					Spec: v1alpha32.DestinationRule{
    						Host: "productpage",
    						Subsets: []*v1alpha32.Subset{
    							{
    								Name:   "v1",
    								Labels: map[string]string{"version": "v1"},
    							},
    						},
    					},
    				},
    			},
    			configDumps: map[string][]byte{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:54:01 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/preflight/checks.go

    func (subnet HTTPProxyCIDRCheck) Check() (warnings, errorList []error) {
    	klog.V(1).Infoln("validating http connectivity to first IP address in the CIDR")
    	if len(subnet.CIDR) == 0 {
    		return nil, nil
    	}
    
    	_, cidr, err := netutils.ParseCIDRSloppy(subnet.CIDR)
    	if err != nil {
    		return nil, []error{errors.Wrapf(err, "error parsing CIDR %q", subnet.CIDR)}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  8. tests/integration/pilot/analyze_test.go

    			// Validation error if we have a virtual service with subset not defined.
    			output, err := istioctlSafe(t, istioCtl, ns.Name(), false, virtualServiceFile)
    			expectMessages(t, g, output, msg.ReferencedResourceNotFound)
    			g.Expect(err).To(BeIdenticalTo(analyzerFoundIssuesError))
    
    			// Error goes away if we define the subset in the destination rule.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. cluster/gce/config-default.sh

      IP_ALIAS_SIZE="/$(get-alias-range-size "${MAX_PODS_PER_NODE}")"
      export IP_ALIAS_SIZE
      IP_ALIAS_SUBNETWORK=${KUBE_GCE_IP_ALIAS_SUBNETWORK:-${INSTANCE_PREFIX}-subnet-default}
      # If we're using custom network, use the subnet we already create for it as the one for ip-alias.
      # Note that this means SUBNETWORK would override KUBE_GCE_IP_ALIAS_SUBNETWORK in case of custom network.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyReportTaskIntegrationTest.groovy

              |    \\--- project :c (*)
              \\--- project :c (*)
    """
            output.contains '(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation.'
        }
    
        def "marks project dependency that can't be resolved as 'FAILED'"() {
            given:
            createDirs("A", "B", "C")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 05:32:54 UTC 2023
    - 31.2K bytes
    - Viewed (0)
Back to top