Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,040 for populator (0.17 sec)

  1. src/runtime/write_err_android.go

    		exit(2)
    	}
    	writeFD = uintptr(fd)
    
    	// Prepopulate invariant part of the header.
    	// The first 11 bytes will be populated later in writeLogdHeader.
    	copy(writeBuf[11:11+len(writeHeader)], writeHeader)
    }
    
    // writeLogdHeader populates the header and returns the length of the payload.
    func writeLogdHeader() int {
    	hdr := writeBuf[:11]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/config/upgradeconfiguration.go

    // If cfgPath is specified, defaultversionedcfg will always get overridden. Otherwise, the default config (often populated by flags) will be used.
    // Then the external, versioned configuration is defaulted and converted to the internal type.
    // Right thereafter, the configuration is defaulted again with dynamic values
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java

                 * array. Incedentally when these andx smbs are created they are not
                 * necessarily populated with header data because they're not writing
                 * the header, only their body. But for whatever reason one might wish
                 * to populate fields if the writeXxx operation needs this header data
                 * for whatever reason. I copy over the uid here so it appears correct
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/config/initconfiguration.go

    		initcfg = &kubeadmapi.InitConfiguration{}
    		if err := kubeadmscheme.Scheme.Convert(extinitcfg, initcfg, nil); err != nil {
    			return nil, err
    		}
    	}
    	// If ClusterConfiguration was given, populate it in the InitConfiguration struct
    	if clustercfg != nil {
    		initcfg.ClusterConfiguration = *clustercfg
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

    BUILD SUCCESSFUL in 409ms
    7 actionable tasks: 7 up-to-date
    ----
    
    No surprise here, thanks to incremental builds, Gradle noticed nothing changed.
    However, in the background, the local build cache has been populated.
    
    Let's run the clean and build again:
    [source,text]
    ----
    $ ./gradlew :app:clean :app:build
    
    > Task :app:clean
    > Task :app:compileJava FROM-CACHE
    > Task :app:processResources NO-SOURCE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_operator.h

        Operation *mlir_op, uint32_t opcode_index,
        const std::vector<int32_t> &operands, const std::vector<int32_t> &results,
        const std::vector<int32_t> &intermediates,
        flatbuffers::FlatBufferBuilder *fbb);
    
    // Populates the array of mlir::NamedAttributes corresponding to the given
    // tflite::FlatbufferOptionsUnion.
    // We use an out parameter per LLVM convention
    void BuiltinOptionsToAttributes(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 21:00:09 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/cache/actual_state_of_world_test.go

    }
    
    // Populates data struct with one volume/node entry.
    // Calls GetAttachState() to verify entry.
    // Verifies the populated volume/node entry exists.
    func Test_VolumeNodeExists_Positive_VolumeExistsNodeExists(t *testing.T) {
    	// Arrange
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 66.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // dataSourceRef specifies the object from which to populate the volume with data, if a non-empty
      // volume is desired. This may be any object from a non-empty API group (non
      // core object) or a PersistentVolumeClaim object.
      // When this field is specified, volume binding will only succeed if the type of
      // the specified object matches some installed volume populator or dynamic
      // provisioner.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. src/crypto/x509/cert_pool_test.go

    			b:     emptyPool,
    			equal: true,
    		},
    		{
    			name:  "one empty pool, one populated pool",
    			a:     emptyPool,
    			b:     nonSystemPopulated,
    			equal: false,
    		},
    		{
    			name:  "two populated pools",
    			a:     nonSystemPopulated,
    			b:     nonSystemPopulated,
    			equal: true,
    		},
    		{
    			name:  "two populated pools, different content",
    			a:     nonSystemPopulated,
    			b:     nonSystemPopulatedAlt,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 18:06:43 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/build/BuildLifecycleController.java

         */
        BuildWorkPlan newWorkGraph();
    
        /**
         * Populates the given work plan with tasks and work from this build.
         */
        void populateWorkGraph(BuildWorkPlan plan, Consumer<? super WorkGraphBuilder> action);
    
        /**
         * Finalizes the work graph after it has not been populated.
         */
        void finalizeWorkGraph(BuildWorkPlan plan);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:05:29 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top