Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,040 for populator (0.17 sec)

  1. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/services/DefaultVersionControlRepositoryFactory.java

                            GFileUtils.touch(baseDir);
                            delegate.populate(workingDir, ref, spec);
                            return workingDir;
                        } catch (Exception e) {
                            throw new GradleException(String.format("Could not populate working directory from %s.", spec.getDisplayName()), e);
                        }
                    }
                });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 18:35:55 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/decompose_reduce_dataset.cc

      SmallVector<Value, 4> if_returns;
    
      builder.create<TF::YieldOp>(loc,
                                  /*operands=*/reduce_call.getResults());
      return dataset_if;
    }
    
    // Populates WhileRegionOp body which is replacing `reduce_dataset`.  Iterates
    // `anonymous_iterator` with `dataset_types` and optional calls `reduce_func`.
    void PopulateDatasetWhileBody(OpBuilder builder, ReduceDatasetOp reduce_dataset,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/clean_cache_n.txt

    # We're testing cache behavior, so start with a clean GOCACHE.
    env GOCACHE=$WORK/cache
    
    # Build something so that the cache gets populates
    go build main.go
    
    # Check that cache contains directories before running
    exists $GOCACHE/00
    
    # Run go clean -cache -n and ensure that directories weren't deleted
    go clean -cache -n
    exists $GOCACHE/00
    
    # Re-run go clean cache without the -n flag go ensure that directories were properly removed
    go clean -cache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 637 bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/taskgraph/TaskExecutionGraphInternal.java

        /**
         * Attaches the work that this graph will run. Fires events and no further tasks should be added.
         */
        void populate(FinalizedExecutionPlan plan);
    
        /**
         * Executes the given work. Discards the contents of this graph when completed. Should call {@link #populate)} prior to
         * calling this method.
         */
        ExecutionResult<Void> execute(FinalizedExecutionPlan plan);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:05:29 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/ParallelSourceDependencyIntegrationTest.groovy

                }
            """
            repo.commit('initial')
            repo.createLightWeightTag('1.2')
        }
    
        @ToBeFixedForConfigurationCache(skip = ToBeFixedForConfigurationCache.Skip.FAILS_TO_CLEANUP)
        def "can populate into same dir in parallel"() {
            given:
            createDirs("A", "B", "C", "D")
            settingsFile << """
                include 'A', 'B', 'C', 'D'
            """
            buildFile << """
                subprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. tensorflow/cc/ops/while_loop.h

                                 Output* output)>
        CondGraphBuilderFn;
    
    // Function that takes body graph inputs and returns body graph outputs.
    // 'outputs' need not be populated if an error is returned.
    typedef std::function<Status(const Scope&, const std::vector<Output>& inputs,
                                 std::vector<Output>* outputs)>
        BodyGraphBuilderFn;
    
    // Constructs a while loop.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 24 08:24:58 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/storage/v1alpha1/generated.proto

      // spec represents specification of the desired attach/detach volume behavior.
      // Populated by the Kubernetes system.
      optional VolumeAttachmentSpec spec = 2;
    
      // status represents status of the VolumeAttachment request.
      // Populated by the entity completing the attach or detach
      // operation, i.e. the external-attacher.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/certificates/v1/types.go

    	// username contains the name of the user that created the CertificateSigningRequest.
    	// Populated by the API server on creation and immutable.
    	// +optional
    	Username string `json:"username,omitempty" protobuf:"bytes,2,opt,name=username"`
    	// uid contains the uid of the user that created the CertificateSigningRequest.
    	// Populated by the API server on creation and immutable.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. src/html/template/examplefiles_test.go

    }
    
    // The following example is duplicated in text/template; keep them in sync.
    
    // Here we demonstrate loading a set of templates from a directory.
    func ExampleTemplate_glob() {
    	// Here we create a temporary directory and populate it with our sample
    	// template definition files; usually the template files would already
    	// exist in some location known to the program.
    	dir := createTestDir([]templateFile{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 7.5K bytes
    - Viewed (0)
  10. src/internal/syscall/unix/nonblocking_wasip1.go

    	return flag&syscall.FDFLAG_NONBLOCK != 0
    }
    
    // This helper is implemented in the syscall package. It means we don't have
    // to redefine the fd_fdstat_get host import or the fdstat struct it
    // populates.
    //
    //go:linkname fd_fdstat_get_flags syscall.fd_fdstat_get_flags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:12:04 UTC 2023
    - 787 bytes
    - Viewed (0)
Back to top