Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 165 for subkeys (0.37 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    gradle test worker process can continue to function.
    --
    
    [[test_filtering]]
    == Test filtering
    
    It's a common requirement to run subsets of a test suite, such as when you're fixing a bug or developing a new test case. Gradle provides two mechanisms to do this:
    
     * Filtering (the preferred option)
     * Test inclusion/exclusion
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	WinVerifyTrustEx(hwnd HWND, actionId *GUID, data *WinTrustData) (ret error) = wintrust.WinVerifyTrustEx
    //sys	RegOpenKeyEx(key Handle, subkey *uint16, options uint32, desiredAccess uint32, result *Handle) (regerrno error) = advapi32.RegOpenKeyExW
    //sys	RegCloseKey(key Handle) (regerrno error) = advapi32.RegCloseKey
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    }
    
    // testAndInputKey returns the actual cache key for the pair (testID, testInputsID).
    func testAndInputKey(testID, testInputsID cache.ActionID) cache.ActionID {
    	return cache.Subkey(testID, fmt.Sprintf("inputs:%x", testInputsID))
    }
    
    func (c *runCache) saveOutput(a *work.Action) {
    	if c.id1 == (cache.ActionID{}) && c.id2 == (cache.ActionID{}) {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    //	   },
    //	]
    type Endpoints struct {
    	metav1.TypeMeta
    	// +optional
    	metav1.ObjectMeta
    
    	// The set of all endpoints is the union of all subsets.
    	Subsets []EndpointSubset
    }
    
    // EndpointSubset is a group of addresses with a common set of ports.  The
    // expanded set of endpoints is the Cartesian product of Addresses x Ports.
    // For example, given:
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_Endpoints_To_core_Endpoints(in *v1.Endpoints, out *core.Endpoints, s conversion.Scope) error {
    	out.ObjectMeta = in.ObjectMeta
    	out.Subsets = *(*[]core.EndpointSubset)(unsafe.Pointer(&in.Subsets))
    	return nil
    }
    
    // Convert_v1_Endpoints_To_core_Endpoints is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                      type: string
                    type: array
                  host:
                    description: The name of a service from the service registry.
                    type: string
                  subsets:
                    description: One or more named sets that represent individual versions
                      of a service.
                    items:
                      properties:
                        labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  7. manifests/charts/base/crds/crd-all.gen.yaml

                      type: string
                    type: array
                  host:
                    description: The name of a service from the service registry.
                    type: string
                  subsets:
                    description: One or more named sets that represent individual versions
                      of a service.
                    items:
                      properties:
                        labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.pb.go

    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			m.Subsets = append(m.Subsets, EndpointSubset{})
    			if err := m.Subsets[len(m.Subsets)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		default:
    			iNdEx = preIndex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  9. api/openapi-spec/v3/api__v1_openapi.json

              },
              "subsets": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.8.md

        * API fields previously capable of storing and returning either `[]` and `null` via JSON API requests (for example, the Endpoints `subsets` field) can now store only `null` when created using the protobuf content-type or stored in etcd using protobuf serialization (the default in 1.6+). JSON API clients should tolerate `null` values for such fields, and treat `null` and `[]` as equivalent...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
Back to top