Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 647 for assign_id (1.05 sec)

  1. src/errors/errors.go

    //
    // is preferable to
    //
    //	if err == fs.ErrExist
    //
    // because the former will succeed if err wraps [io/fs.ErrExist].
    //
    // [As] examines the tree of its first argument looking for an error that can be
    // assigned to its second argument, which must be a pointer. If it succeeds, it
    // performs the assignment and returns true. Otherwise, it returns false. The form
    //
    //	var perr *fs.PathError
    //	if errors.As(err, &perr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 19:45:41 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. tensorflow/c/eager/parallel_device/parallel_device_testlib.cc

      TFE_OpSetDevice(op.get(), device, status);
    
      int num_retvals = 0;
      TFE_Execute(op.get(), nullptr, &num_retvals, status);
      if (TF_GetCode(status) != TF_OK) return;
    }
    
    void Variable::AssignAdd(TFE_Context* context, TFE_TensorHandle* value,
                             TF_Status* status) {
      GeneralAssignment("AssignAddVariableOp", context, value, status);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 15:44:44 UTC 2021
    - 12.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

    import org.gradle.internal.declarativedsl.evaluator.runner.EvaluationResult
    import org.gradle.internal.declarativedsl.language.SourceIdentifier
    import org.gradle.internal.declarativedsl.objectGraph.AssignmentResolver.AssignmentResolutionResult.Assigned
    import org.gradle.internal.declarativedsl.parsing.DefaultLanguageTreeBuilder
    import org.gradle.internal.declarativedsl.parsing.ParserKt
    import org.gradle.test.fixtures.plugin.PluginBuilder
    import org.gradle.tooling.ModelBuilder
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/dependencymanagement/SamplesWorkingWithDependenciesIntegrationTest.groovy

        }
    
        @UsesSample("dependencyManagement/workingWithDependencies-iterateDependencies")
        @ToBeFixedForConfigurationCache(iterationMatchers = ".*kotlin dsl")
        def "can iterate over dependencies assigned to a configuration with #dsl dsl"() {
            executer.inDirectory(sample.dir.file(dsl))
    
            when:
            succeeds('iterateDeclaredDependencies')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. src/cmd/internal/cov/covcmd/cmddefs.go

    	// "normal", but in the future we may add new values (for example,
    	// if panic paths are instrumented, or if the instrumenter
    	// eliminates redundant counters).
    	Strategy string
    
    	// Prefix assigned to the names of counter variables generated
    	// during instrumentation by cmd/cover.
    	CounterPrefix string
    
    	// Name chosen for the package ID variable generated during
    	// instrumentation.
    	PkgIdVar string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 30 16:13:15 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. mockwebserver/src/main/kotlin/mockwebserver3/RecordedRequest.kt

      /** The body of this POST request. This may be truncated. */
      val body: Buffer,
      /**
       * The index of this request on its HTTP connection. Since a single HTTP connection may serve
       * multiple requests, each request is assigned its own sequence number.
       */
      val sequenceNumber: Int,
      socket: Socket,
      /**
       * The failure MockWebServer recorded when attempting to decode this request. If, for example,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. src/encoding/xml/example_test.go

    }
    
    // This example demonstrates unmarshaling an XML excerpt into a value with
    // some preset fields. Note that the Phone field isn't modified and that
    // the XML <Company> element is ignored. Also, the Groups field is assigned
    // considering the element path provided in its tag.
    func ExampleUnmarshal() {
    	type Email struct {
    		Where string `xml:"where,attr"`
    		Addr  string
    	}
    	type Address struct {
    		City, State string
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 3.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

             (sharding.tile_assignment_devices(0) < 0)))
          return cluster_func.emitError(llvm::formatv(
              "incorrect sharding format for outputs. Maximal "
              "sharding should be assigned to device id in range "
              "[0, {0}). Currently assigned to {1}",
              num_cores_per_replica, sharding.tile_assignment_devices(0)));
    
        output_sharding_list->emplace_back(std::move(sharding));
      }
      return mlir::success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  9. .github/workflows/trusted_partners.js

      return domain;
    };
    
    /** For trusted parters like Intel, we want to auto-run tests
        This allows us to reduce the delay to external partners
        Add Labels - kokoro:force-run
        The PR is also assigned to specific teams to fast track review
        Additional reviewers can be added manually based on PR contents
      @param {!object}
        github enables querying for PR and also create issue using rest endpoint
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 07 13:52:04 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. pkg/registry/core/pod/strategy.go

    	if err != nil {
    		return nil, nil, err
    	}
    
    	nodeName := types.NodeName(pod.Spec.NodeName)
    	if len(nodeName) == 0 {
    		// If pod has not been assigned a host, return an empty location
    		return nil, nil, errors.NewBadRequest(fmt.Sprintf("pod %s does not have a host assigned", name))
    	}
    	nodeInfo, err := connInfo.GetConnectionInfo(ctx, nodeName)
    	if err != nil {
    		return nil, nil, err
    	}
    	params := url.Values{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 29.8K bytes
    - Viewed (0)
Back to top