Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 144 for central (0.15 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    The next step is to do the same by downloading what is actually on Maven Central:
    
    ----
    $ curl https://my-company-mirror.com/repo/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar  --output central-j2objc-annotations-1.1.jar
    $ curl https://my-company-mirror.com/repo/com/google/j2objc/j2objc-annotations/1/1/j2objc-annotations-1.1.jar.asc  --output central-j2objc-annotations-1.1.jar.asc
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. src/runtime/mheap.go

    		base, end uintptr
    	}
    
    	// central free lists for small size classes.
    	// the padding makes sure that the mcentrals are
    	// spaced CacheLinePadSize bytes apart, so that each mcentral.lock
    	// gets its own cache line.
    	// central is indexed by spanClass.
    	central [numSpanClasses]struct {
    		mcentral mcentral
    		pad      [(cpu.CacheLinePadSize - unsafe.Sizeof(mcentral{})%cpu.CacheLinePadSize) % cpu.CacheLinePadSize]byte
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  3. src/runtime/mgc.go

    // combined into a two-page span.
    //
    // It's critical to ensure that no operations proceed on unswept spans (that would corrupt
    // mark bits in GC bitmap). During GC all mcaches are flushed into the central cache,
    // so they are empty. When a goroutine grabs a new span into mcache, it sweeps it.
    // When a goroutine explicitly frees an object or sets a finalizer, it ensures that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  4. gradle/verification-metadata.xml

                <pgp value="CB3808E03CD602A6DC5B882552931F4B72B4F54C"/>
             </artifact>
          </component>
          <component group="net.rubygrapefruit" name="ansi-control-sequence-util" version="0.3">
             <artifact name="ansi-control-sequence-util-0.3.jar">
                <pgp value="5B131E826582CF79510DAA11CD3E539F208832D0"/>
             </artifact>
          </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

        tf_executor.fetch %arg0, %arg1, %add, %mul, %control_barrier, %mul_control : tensor<!tf_type.resource<tensor<f32>>>, tensor<!tf_type.resource<tensor<f32>>>, tensor<f32>, tensor<f32>, !tf_executor.control, !tf_executor.control
      }
      // CHECK: return %[[GRAPH_OUT]]#0, %[[GRAPH_OUT]]#1, %[[GRAPH_OUT]]#2, %[[GRAPH_OUT]]#3, %[[GRAPH_OUT]]#4, %[[GRAPH_OUT]]#5
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    // Control returns the security descriptor control bits.
    func (sd *SECURITY_DESCRIPTOR) Control() (control SECURITY_DESCRIPTOR_CONTROL, revision uint32, err error) {
    	err = getSecurityDescriptorControl(sd, &control, &revision)
    	return
    }
    
    // SetControl sets the security descriptor control bits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modget/get.go

    	UsageLine: "vcs",
    	Short:     "controlling version control with GOVCS",
    	Long: `
    The 'go get' command can run version control commands like git
    to download imported code. This functionality is critical to the decentralized
    Go package ecosystem, in which code can be imported from any server,
    but it is also a potential security problem, if a malicious server finds a
    way to cause the invoked version control command to run unintended code.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string imagePullPolicy = 13;
    
      // ImagePullSecrets for the control plane ServiceAccount, list of secrets in the same namespace
      // to use for pulling any images in pods that reference this ServiceAccount.
      // Must be set for any cluster configured with private docker registry.
      repeated string imagePullSecrets = 37;
    
      // Specifies the default namespace for the Istio control plane components.
      string istioNamespace = 14;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      TF_RETURN_IF_ERROR(FindOutputImageOfEdgeDst(
          src_func_id, dst_func_id, node_images, edge->dst(), &dst_image));
    
      // If this is a control edge then copy it and return. Lift control edges onto
      // the enclosing call operator.
      if (edge->IsControlEdge()) {
        // Add the control edge, if we have not already added it, using the images
        // determined above (potentially call operators or RecvAtHost/SendFromHost).
        if (edges_added
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      return nullptr;
    }
    
    // Replaces all `tf.VarIsInitializedOp` in a block with a constant true.
    // TODO(b/171039585): Replace this with proper analysis of
    // `tf.VarIsInitializedOp` in regards to resource writes and control flow.
    void SetAllVarIsInitializedToTrue(Block* block) {
      auto builder = OpBuilder::atBlockBegin(block);
      TF::ConstOp const_true = nullptr;
      for (auto op :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top