Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 266 for Canonicalize (0.33 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/remove_init_variable_v1.py

              outputs={'r': tensor_info_r},
              method_name='some_function'))
      }, tf.initializers.global_variables(), None
    
    
    if __name__ == '__main__':
      common_v1.set_tf_options()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/ProjectBuilderImpl.java

            final File projectDir = prepareProjectDir(inputProjectDir);
            File userHomeDir = gradleUserHomeDir == null ? new File(projectDir, "userHome") : FileUtils.canonicalize(gradleUserHomeDir);
            StartParameterInternal startParameter = new StartParameterInternal();
            startParameter.setGradleUserHomeDir(userHomeDir);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:36 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/reflect/TypeToken.java

       *       extends Enum<?>>} canonicalizes to {@code Enum<?>}, which is a supertype (if we disregard
       *       the upper bound is implicitly an Enum too).
       *   <li>If {@code canonicalize(A) == canonicalize(B)}, then {@code Foo<A>.isSubtypeOf(Foo<B>)}
       *       and vice versa. i.e. {@code A.is(B)} and {@code B.is(A)}.
       *   <li>{@code canonicalize(canonicalize(A)) == canonicalize(A)}.
       * </ol>
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  4. pkg/registry/core/persistentvolume/strategy.go

    func (persistentvolumeStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return pvutil.GetWarningsForPersistentVolume(obj.(*api.PersistentVolume))
    }
    
    // Canonicalize normalizes the object after validation.
    func (persistentvolumeStrategy) Canonicalize(obj runtime.Object) {
    }
    
    func (persistentvolumeStrategy) AllowCreateOnUpdate() bool {
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 03:58:36 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonServices.java

    import org.gradle.launcher.exec.BuildExecutor;
    import org.gradle.tooling.internal.provider.action.BuildActionSerializer;
    
    import java.io.File;
    import java.util.UUID;
    
    import static org.gradle.internal.FileUtils.canonicalize;
    
    /**
     * Takes care of instantiating and wiring together the services required by the daemon server.
     */
    public class DaemonServices implements ServiceRegistrationProvider {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. pkg/registry/apps/statefulset/strategy.go

    		warnings = append(warnings, pvcutil.GetWarningsForPersistentVolumeClaimSpec(field.NewPath("spec", "volumeClaimTemplates").Index(i), pvc.Spec)...)
    	}
    	return warnings
    }
    
    // Canonicalize normalizes the object after validation.
    func (statefulSetStrategy) Canonicalize(obj runtime.Object) {
    }
    
    // AllowCreateOnUpdate is false for StatefulSet; this means POST is needed to create one.
    func (statefulSetStrategy) AllowCreateOnUpdate() bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:10 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  7. pkg/registry/core/persistentvolumeclaim/strategy.go

    	return pvcutil.GetWarningsForPersistentVolumeClaim(obj.(*api.PersistentVolumeClaim))
    }
    
    // Canonicalize normalizes the object after validation.
    func (persistentvolumeclaimStrategy) Canonicalize(obj runtime.Object) {
    }
    
    func (persistentvolumeclaimStrategy) AllowCreateOnUpdate() bool {
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 20:58:25 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  8. pkg/registry/certificates/clustertrustbundle/strategy.go

    }
    
    func (strategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    func (strategy) Canonicalize(obj runtime.Object) {}
    
    func (strategy) AllowCreateOnUpdate() bool {
    	return false
    }
    
    func (s strategy) PrepareForUpdate(ctx context.Context, new, old runtime.Object) {}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:18 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. pkg/registry/resource/resourceclaimtemplate/strategy.go

    }
    
    func (resourceClaimTemplateStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    func (resourceClaimTemplateStrategy) Canonicalize(obj runtime.Object) {
    }
    
    func (resourceClaimTemplateStrategy) AllowCreateOnUpdate() bool {
    	return false
    }
    
    func (resourceClaimTemplateStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 19:08:24 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  10. pkg/registry/flowcontrol/prioritylevelconfiguration/strategy.go

    func (priorityLevelConfigurationStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    // Canonicalize normalizes the object after validation.
    func (priorityLevelConfigurationStrategy) Canonicalize(obj runtime.Object) {
    }
    
    func (priorityLevelConfigurationStrategy) AllowUnconditionalUpdate() bool {
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 20:55:50 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top