Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,172 for attacher (0.2 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/test_resource_alias_analysis.cc

                                  [&](Value v) { diag << get_id(v); });
          }
        };
    
        // Assign a unique ID to each value seen in this function.
        func.walk([&](Operation* op) {
          // For all attached regions, assign ID to the region arguments.
          for (Region& region : op->getRegions()) {
            for (auto region_arg : TF::filter_resources(region.getArguments()))
              assign_id(region_arg);
          }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  2. istioctl/pkg/clioptions/control_plane.go

    // ControlPlaneOptions defines common options used by istioctl.
    type ControlPlaneOptions struct {
    	// Revision is the istio.io/rev control plane revision
    	Revision string
    }
    
    // AttachControlPlaneFlags attaches control-plane flags to a Cobra command.
    // (Currently just --revision)
    func (o *ControlPlaneOptions) AttachControlPlaneFlags(cmd *cobra.Command) {
    	cmd.PersistentFlags().StringVarP(&o.Revision, "revision", "r", "",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 01 05:47:27 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  3. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/AdditionalDataSpec.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.problems.internal;
    
    /**
     * Marker interface for additional data that can be attached to a {@link Problem}.
     */
    public interface AdditionalDataSpec {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 791 bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TestProgressCrossVersionSpec.groovy

        }
    
        def "top-level test operation has test task as parent if task listener is attached"() {
            given:
            goodCode()
    
            when: 'listening to test progress events and task listener is attached'
            def events = ProgressEvents.create()
            withConnection {
                ProjectConnection connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. src/internal/poll/error_linux_test.go

    	"os"
    	"syscall"
    )
    
    func badStateFile() (*os.File, error) {
    	if os.Getuid() != 0 {
    		return nil, errors.New("must be root")
    	}
    	// Using OpenFile for a device file is an easy way to make a
    	// file attached to the runtime-integrated network poller and
    	// configured in halfway.
    	return os.OpenFile("/dev/net/tun", os.O_RDWR, 0)
    }
    
    func isBadStateFileError(err error) (string, bool) {
    	switch err {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 13 08:53:02 UTC 2019
    - 748 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/LocalComponentGraphResolveStateFactoryTest.groovy

            publishArtifact.file == file
            publishArtifact == confState.prepareForArtifactResolution().artifactVariants.first().artifacts.first()
        }
    
        def "artifact is attached to child configurations"() {
            given:
            def artifact1 = artifactName()
            def artifact2 = artifactName()
            def artifact3 = artifactName()
            def file1 = new File("artifact-1.zip")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. pkg/keepalive/options.go

    		MaxServerConnectionAge:      Infinity,
    		MaxServerConnectionAgeGrace: 10 * time.Second,
    	}
    }
    
    // AttachCobraFlags attaches a set of Cobra flags to the given Cobra command.
    //
    // Cobra is the command-line processor that Istio uses. This command attaches
    // the necessary set of flags to configure the grpc keepalive options.
    func (o *Options) AttachCobraFlags(cmd *cobra.Command) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.h

    //
    // Optionally emits remarks attached to operation that failed to propagate
    // results constraints to its operands (for testing purpose).
    //
    // Returns failure if constraints can't be propagated through some of the
    // operations accepted by the filter (there is no clustering policy for an
    // operation, or constraints can't be satisfied by the policy), and attaches
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-simple/kotlin/producer/build.gradle.kts

        archiveClassifier = "instrumented"
    }
    
    // tag::attach-outgoing-artifact[]
    artifacts {
        add("instrumentedJars", instrumentedJar)
    }
    // end::attach-outgoing-artifact[]
    
    /*
    // tag::attach-outgoing-artifact-explicit[]
    artifacts {
        add("instrumentedJars", someTask.outputFile) {
            builtBy(someTask)
        }
    }
    // end::attach-outgoing-artifact-explicit[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 832 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-simple/groovy/producer/build.gradle

        archiveClassifier = "instrumented"
    }
    
    // tag::attach-outgoing-artifact[]
    artifacts {
        instrumentedJars(instrumentedJar)
    }
    // end::attach-outgoing-artifact[]
    
    /*
    // tag::attach-outgoing-artifact-explicit[]
    artifacts {
        instrumentedJars(someTask.outputFile) {
            builtBy(someTask)
        }
    }
    // end::attach-outgoing-artifact-explicit[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 785 bytes
    - Viewed (0)
Back to top