Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 616 for typev3 (0.33 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/openapi/testing/types.go

    limitations under the License.
    */
    
    package testing
    
    import (
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    // +k8s:deepcopy-gen=true
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    type TestType struct {
    }
    
    func (t TestType) GetObjectKind() schema.ObjectKind {
    	return t
    }
    
    func (t TestType) SetGroupVersionKind(kind schema.GroupVersionKind) {
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 07:28:47 UTC 2017
    - 1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/apis/cr/v1/types.go

    type ExampleStatus struct {
    	State   ExampleState `json:"state,omitempty"`
    	Message string       `json:"message,omitempty"`
    }
    
    type ExampleState string
    
    const (
    	ExampleStateCreated   ExampleState = "Created"
    	ExampleStateProcessed ExampleState = "Processed"
    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // ExampleList is a list of Example resources
    type ExampleList struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 05 09:07:27 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/types.go

    	// +optional
    	StartTime *metav1.Time
    }
    
    type CarpCondition struct {
    	Type   CarpConditionType
    	Status ConditionStatus
    	// +optional
    	LastProbeTime metav1.Time
    	// +optional
    	LastTransitionTime metav1.Time
    	// +optional
    	Reason string
    	// +optional
    	Message string
    }
    
    // CarpSpec is a description of a carp
    type CarpSpec struct {
    	// +optional
    	RestartPolicy RestartPolicy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 03 06:34:52 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  4. fastapi/py.typed

    Steve B <******@****.***> 1557567827 +0200
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 11 09:43:47 UTC 2019
    - Viewed (0)
  5. src/sort/slice.go

    // The sort is not guaranteed to be stable: equal elements
    // may be reversed from their original order.
    // For a stable sort, use [SliceStable].
    //
    // The less function must satisfy the same requirements as
    // the Interface type's Less method.
    //
    // Note: in many situations, the newer [slices.SortFunc] function is more
    // ergonomic and runs faster.
    func Slice(x any, less func(i, j int) bool) {
    	rv := reflectlite.ValueOf(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalization_op_config.cc

          TypeID::get<TF::CosOp>(),
          TypeID::get<TF::TanOp>(),
          TypeID::get<TF::DiagPartOp>(),
          TypeID::get<TF::EinsumOp>(),
          TypeID::get<TF::ExpOp>(),
          TypeID::get<TF::Expm1Op>(),
          TypeID::get<TF::FakeQuantWithMinMaxArgsOp>(),
          TypeID::get<TF::FloorOp>(),
          TypeID::get<TF::IFFTOp>(),
          TypeID::get<TF::ImagOp>(),
          TypeID::get<TF::IsFiniteOp>(),
          TypeID::get<TF::IsInfOp>(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/ntlmssp/Type3Message.java

            pos += writeSecurityBufferContent(type3, pos, domOff, domainBytes);
            pos += writeSecurityBufferContent(type3, pos, userOff, userBytes);
            pos += writeSecurityBufferContent(type3, pos, wsOff, workstationBytes);
            pos += writeSecurityBufferContent(type3, pos, skOff, sessionKeyBytes);
    
            return type3;
    
        }
    
    
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 30.6K bytes
    - Viewed (0)
  8. internal/mountinfo/mountinfo_linux_test.go

    // and success cases.
    func TestCrossDeviceMountPaths(t *testing.T) {
    	successCase := `/dev/0 /path/to/0/1 type0 flags 0 0
    		/dev/1    /path/to/1   type1	flags 1 1
    		/dev/2 /path/to/1/2 type2 flags,1,2=3 2 2
                    /dev/3 /path/to/1.1 type3 flags,1,2=3 3 3
    		`
    	var err error
    	dir := t.TempDir()
    	mountsPath := filepath.Join(dir, "mounts")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

                    }
                    Type3Message type3 = (Type3Message)
                            attemptNegotiation(response);
                    if (type3 == null) return;
                    connection.setRequestProperty(authProperty, authMethod + ' ' +
                            Base64.encode(type3.toByteArray()));
                    connection.connect(); // send type 3
                    if (cachedOutput != null && doOutput) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 20.4K bytes
    - Viewed (0)
  10. platforms/software/security/src/test/groovy/org/gradle/plugins/signing/type/type/AbstractSignatureTypeProviderSpec.groovy

            provider.hasTypeForExtension(type2.extension)
            !provider.hasTypeForExtension(type3.extension)
        }
    
        def "default type"() {
            expect:
            provider.defaultType == type1
    
            when:
            provider.defaultType = type2.extension
    
            then:
            provider.defaultType == type2
        }
    
        def "can't set default type to unregistered type"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top