Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 913 for inversion (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/conversion.go

    	return versionedAttr, nil
    }
    
    // ConvertVersionedAttributes converts VersionedObject and VersionedOldObject to the specified kind, if needed.
    // If attr.VersionedKind already matches the requested kind, no conversion is performed.
    // If conversion is required:
    // * attr.VersionedObject is used as the source for the new object if Dirty=true (and is round-tripped through attr.Attributes.Object, clearing Dirty in the process)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 16:56:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/ingress/conversion.go

    // Copyright Istio Authors
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 07:19:43 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/conversion.go

    // Copyright Istio Authors
    //
    // Licensed under the Apache License, Version 2.0 (the "License");
    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. pkg/config/conversion.go

    /*
     Copyright Istio Authors
    
     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at
    
         http://www.apache.org/licenses/LICENSE-2.0
    
     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 23 17:19:38 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  5. pkg/controller/volume/ephemeral/config/v1alpha1/conversion.go

    // other packages that reference this package to be able to call these conversion functions
    // in an autogenerated manner.
    // TODO: Fix the bug in conversion-gen so it automatically discovers these Convert_* functions
    // in autogenerated code as well.
    
    // Convert_v1alpha1_EphemeralVolumeControllerConfiguration_To_config_EphemeralVolumeControllerConfiguration is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 25 13:36:57 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  6. pkg/apis/apps/v1beta1/conversion.go

    	}
    	return nil
    }
    
    // Convert_v1beta1_StatefulSetSpec_To_apps_StatefulSetSpec augments auto-conversion to preserve < 1.17 behavior
    // setting apiVersion/kind in nested persistent volume claim objects.
    func Convert_v1beta1_StatefulSetSpec_To_apps_StatefulSetSpec(in *appsv1beta1.StatefulSetSpec, out *apps.StatefulSetSpec, s conversion.Scope) error {
    	if err := autoConvert_v1beta1_StatefulSetSpec_To_apps_StatefulSetSpec(in, out, s); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:36:24 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  7. pkg/apis/apps/v1beta2/conversion.go

    		out.Selector = ""
    	}
    	return nil
    }
    
    // Convert_apps_DeploymentSpec_To_v1beta2_DeploymentSpec is defined here, because public
    // conversion is not auto-generated due to existing warnings.
    func Convert_apps_DeploymentSpec_To_v1beta2_DeploymentSpec(in *apps.DeploymentSpec, out *appsv1beta2.DeploymentSpec, s conversion.Scope) error {
    	if err := autoConvert_apps_DeploymentSpec_To_v1beta2_DeploymentSpec(in, out, s); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:36:24 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/v1/conversion.go

    limitations under the License.
    */
    
    package v1
    
    import (
    	v1 "k8s.io/api/admissionregistration/v1"
    	conversion "k8s.io/apimachinery/pkg/conversion"
    	admissionregistration "k8s.io/kubernetes/pkg/apis/admissionregistration"
    )
    
    // Convert_admissionregistration_RuleWithOperations_To_v1_RuleWithOperations is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:46:42 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. src/test/java/jcifs/tests/ContextConfigTest.java

            prop2.setProperty("jcifs.smb.client.minVersion", "SMB311");
            PropertyConfiguration p2 = new PropertyConfiguration(prop2);
            assertEquals(DialectVersion.SMB311, p2.getMinimumVersion());
            assertEquals(DialectVersion.SMB311, p2.getMaximumVersion());
    
            Properties prop3 = new Properties();
            prop3.setProperty("jcifs.smb.client.minVersion", "SMB202");
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/semver/semver.go

    type ByVersion []string
    
    func (vs ByVersion) Len() int      { return len(vs) }
    func (vs ByVersion) Swap(i, j int) { vs[i], vs[j] = vs[j], vs[i] }
    func (vs ByVersion) Less(i, j int) bool {
    	cmp := Compare(vs[i], vs[j])
    	if cmp != 0 {
    		return cmp < 0
    	}
    	return vs[i] < vs[j]
    }
    
    // Sort sorts a list of semantic version strings using [ByVersion].
    func Sort(list []string) {
    	sort.Sort(ByVersion(list))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 8.9K bytes
    - Viewed (0)
Back to top