Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 109 for getIpr (0.57 sec)

  1. pkg/controller/replicaset/replica_set_utils.go

    			break
    		}
    		// Update the ReplicaSet with the latest resource version for the next poll
    		if rs, getErr = c.Get(context.TODO(), rs.Name, metav1.GetOptions{}); getErr != nil {
    			// If the GET fails we can't trust status.Replicas anymore. This error
    			// is bound to be more interesting than the update failure.
    			return nil, getErr
    		}
    	}
    
    	return nil, updateErr
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 12:19:51 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. src/main/assemblies/files/fess

        echo "    -X prop       set non-standard JAVA system property"
        echo "   --prop=val"
        echo "   --prop val     set fess property (i.e. -Des.<prop>=<val>)"
    }
    
    # Parse any long getopt options and put them into properties before calling getopt below
    # Be dash compatible to make sure running under ubuntu works
    ARGV=""
    while [ $# -gt 0 ]
    do
        case $1 in
          --help) ARGV="$ARGV -h"; shift;;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/mark_initialized_variables.cc

            absl::StrCat("failed to fetch device manager: ", status.message()));
    
      // Fetch all varHandleOp in the function.
      llvm::SmallVector<TF::VarHandleOp, 4> var_ops;
      for (auto var_handle_op : block.getOps<TF::VarHandleOp>())
        var_ops.emplace_back(var_handle_op);
    
      // Get resources from Session.
      auto resource_tensors_or = GetResourcesFromSession(var_ops, session);
      if (!resource_tensors_or.ok())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 13 19:14:56 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/PathFactory.java

         */
        public FilePath path(File file, boolean useFileScheme) {
            Variable match = null;
            for (Variable variable : variables) {
                if (file.getAbsolutePath().equals(variable.getDir().getAbsolutePath())) {
                    match = variable;
                    break;
                }
                if (file.getAbsolutePath().startsWith(variable.getPrefix())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/Sample.java

                        TestFile srcDir = context.getSamplesDir().file(sampleName);
                        logger.debug("Copying sample '{}' to test directory.", sampleName);
                        srcDir.copyTo(getDir());
                    } else {
                        logger.debug("No sample specified for this test, skipping.");
                    }
                    base.evaluate();
                }
            };
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/TestKitDirProvider.java

     * limitations under the License.
     */
    
    package org.gradle.testkit.runner.internal;
    
    import java.io.File;
    
    public interface TestKitDirProvider {
        File getDir();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 743 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/optimize_global_tensors.cc

        }
      }
      return true;
    }
    
    GlobalTensorUsesMap CreateGlobalTensorUsesMap(ModuleOp module) {
      GlobalTensorUsesMap global_tensor_uses;
    
      SymbolTable symbol_table(module);
      for (auto func : module.getOps<func::FuncOp>()) {
        for (size_t i = 0, e = func.getNumArguments(); i < e; i++) {
          auto sym =
              func.getArgAttrOfType<SymbolRefAttr>(i, "tf_saved_model.bound_input");
          if (!sym) {
            continue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/RemoteIvyModule.groovy

     */
    
    package org.gradle.test.fixtures.ivy
    
    import org.gradle.test.fixtures.resource.RemoteArtifact
    
    interface RemoteIvyModule extends IvyModule {
        RemoteArtifact getIvy()
        RemoteArtifact getJar()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 816 bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/fixtures/XcodebuildExecutor.java

            TestFile projectDir = new TestFile(xcodeProject.getDir());
            projectDir.assertIsDir();
            return addArguments("-project", projectDir.getAbsolutePath());
        }
    
        public XcodebuildExecutor withWorkspace(XcodeWorkspacePackage xcodeWorkspace) {
            TestFile workspaceDir = new TestFile(xcodeWorkspace.getDir());
            workspaceDir.assertIsDir();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TestResources.java

            testWorkDirProvider = testDirectoryProvider;
            this.extraResources = Arrays.asList(extraResources);
            resources = new Resources(testDirectoryProvider);
        }
    
        public TestFile getDir() {
            return testWorkDirProvider.getTestDirectory();
        }
    
        @Override
        public Statement apply(Statement base, final FrameworkMethod method, Object target) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top