Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 208 for getGood (0.32 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                task.getDocumentationFiles().from(extension.getUserManual().getRoot());
                task.getDocumentationRoot().convention(extension.getUserManual().getRoot());
                task.getDestinationDirectory().convention(layout.getBuildDirectory().dir("tmp/" + task.getName()));
            });
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 05:46:51 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  2. tests/fuzz/analyzer_fuzzer.go

    	}
    
    	// Mesh config file
    	addMeshConfig, err := f.GetBool()
    	if err != nil {
    		return 0
    	}
    	meshConfigFile := ""
    	if addMeshConfig {
    		meshConfigFile, err = createRandomConfigFile(f)
    		if err != nil {
    			return 0
    		}
    		defer os.Remove(meshConfigFile)
    	}
    
    	// Mesh networks file
    	addMeshNetworks, err := f.GetBool()
    	if err != nil {
    		return 0
    	}
    	meshNetworkFile := ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/file/TestVirtualFileSystem.java

        }
    
        public void setRoot(SnapshotHierarchy newRoot) {
            updateRootUnderLock(root -> newRoot);
        }
    
        public SnapshotHierarchy getRoot() {
            return root;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 08 14:17:29 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/maven/ApiMavenResolver.groovy

            graph.getExceptions().each { throw it }
    
            // Resolve artifacts to ensure they are all present
            DependencyResult result = repoSystem.resolveDependencies(session, new DependencyRequest(graph.getRoot(), null))
    
            // Rethrow artifact exceptions if necessary
            // Maven returns an exception if an artifact is found in one repo but not another, so we need extra logic here
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/index/SuggestDeleteResponse.java

            }
        }
    
        public boolean hasError() {
            return !errors.isEmpty();
        }
    
        public List<Throwable> getErrors() {
            return errors;
        }
    
        public long getTook() {
            return took;
        }
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/loadbalancer/fuzz_test.go

    		if err != nil {
    			return
    		}
    
    		localityLB := &v1alpha3.LocalityLoadBalancerSetting{}
    		err = ff.GenerateStruct(localityLB)
    		if err != nil {
    			return
    		}
    
    		enableFailover, err := ff.GetBool()
    		if err != nil {
    			return
    		}
    		ApplyLocalityLoadBalancer(loadAssignment, wrappedLocalityLbEndpoints, locality, proxyLabels, localityLB, enableFailover)
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/log/allcommon/EsPagingResultBean.java

        public EsPagingResultBean(final SearchRequestBuilder builder) {
            this.builder = builder;
        }
    
        public String getQueryDsl() {
            return builder.toString();
        }
    
        public long getTook() {
            return took;
        }
    
        public void setTook(long took) {
            this.took = took;
        }
    
        public int getTotalShards() {
            return totalShards;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/GccPlatformToolProviderTest.groovy

            1 * metaDataProvider.getCompilerMetaData(_, _) >> {
                arguments[1].execute(assertingCompilerExecSpecArguments(args))
                new ComponentFound(metaData)
            }
            1 * toolRegistry.getTool(toolType) >> new DefaultGccCommandLineToolConfiguration(toolType, 'exe')
            1 * toolSearchPath.locate(toolType, 'exe') >> Mock(CommandLineToolSearchResult)
            _ * metaData.systemLibraries >> libs
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/cache/fake/fake_cache.go

    // IsAssumedPod is a fake method for testing.
    func (c *Cache) IsAssumedPod(pod *v1.Pod) (bool, error) {
    	return c.IsAssumedPodFunc(pod), nil
    }
    
    // GetPod is a fake method for testing.
    func (c *Cache) GetPod(pod *v1.Pod) (*v1.Pod, error) {
    	return c.GetPodFunc(pod), nil
    }
    
    // AddNode is a fake method for testing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/reduce_while_operands.cc

      Block &cond = while_op.getCond().front();
      Block &body = while_op.getBody().front();
    
      auto n = while_op.getNumOperands();
      if (!AllOperationSafe(cond) || !AllOperationSafe(body)) return false;
    
      // Find all Consumed indices.
      // i is consumed element if result(i) is used outside whileOp or
      // argument(i) is used in whileOp.getCond().
      for (auto i = 0; i < n; ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top