Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for ADDS (0.11 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

        - name
        - other
      name: type2
      other: bar
    `),
    			Result: []byte(`
    retainKeysMap:
      name: type2
      other: bar
    `),
    		},
    	},
    	{
    		Description: "retainKeys map adds a field",
    		StrategicMergePatchRawTestCaseData: StrategicMergePatchRawTestCaseData{
    			Original: []byte(`
    retainKeysMap:
      name: foo
    `),
    			Current: []byte(`
    retainKeysMap:
      name: foo
    `),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //
    // Tidy makes sure go.mod matches the source code in the module.
    // It adds any missing modules necessary to build the current module's
    // packages and dependencies, and it removes unused modules that
    // don't provide any relevant packages. It also adds any missing entries
    // to go.sum and removes any unnecessary ones.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      Status PrepareConvert(const Graph& graph,
                            std::unique_ptr<GraphDef> graph_def = nullptr);
    
      // Converts the prepared graph to a Function and adds it to the module. A set
      // of nodes from the graph are given to converted to the arguments and returns
      // of the function.
      Status Convert(llvm::StringRef func_name, mlir::FunctionType func_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            succeeds("resolve")
    
            then:
            outputContains("files: [b.jar]")
        }
    
        @ToBeFixedForConfigurationCache(because = "treating file collection visit failures as a configuration cache problem adds an additional failure to the build summary; exception chain is different when transform input cannot be resolved")
        def "user gets a reasonable error message when a transform input cannot be downloaded and proceeds with other inputs"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  5. cmd/bucket-replication.go

    	pool.ResizeWorkers(workers, 0)
    	pool.ResizeFailedWorkers(failedWorkers)
    	go pool.resyncer.PersistToDisk(ctx, o)
    	go pool.processMRF()
    	go pool.persistMRF()
    	return pool
    }
    
    // AddMRFWorker adds a pending/failed replication worker to handle requests that could not be queued
    // to the other workers
    func (p *ReplicationPool) AddMRFWorker() {
    	for {
    		select {
    		case <-p.ctx.Done():
    			return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    	// comment at the top of the file for details.
    	wakep()
    }
    
    // injectglist adds each runnable G on the list to some run queue,
    // and clears glist. If there is no current P, they are added to the
    // global queue, and up to npidle M's are started to run them.
    // Otherwise, for each idle P, this adds a G to the global queue
    // and starts an M. Any remaining G's are added to the current P's
    // local run queue.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        level MLIR module, with function renamings to avoid naming conflicts.
    
        After the outlining, it updates tf.XlaCallModule's module attribute to be
        empty, adds an `_entry_function` attribute referring to the entry function.
        It also adds a `_from_xla_call_module: true` attribute to each lifted
        StableHLO function.
      }];
    
      // These dialects are needed by stablehlo deserialization.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  8. pkg/kubelet/eviction/helpers_test.go

    			Priority:   &priority,
    		},
    	}
    }
    
    // nodeConditionList is a simple alias to support equality checking independent of order
    type nodeConditionList []v1.NodeConditionType
    
    // Equal adds the ability to check equality between two lists of node conditions.
    func (s1 nodeConditionList) Equal(s2 nodeConditionList) bool {
    	if len(s1) != len(s2) {
    		return false
    	}
    	for _, item := range s1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  9. src/database/sql/sql.go

    		if !fc {
    			ds.Close()
    		}
    	}
    }
    
    // debugGetPut determines whether getConn & putConn calls' stack traces
    // are returned for more verbose crashes.
    const debugGetPut = false
    
    // putConn adds a connection to the db's free pool.
    // err is optionally the last error that occurred on this connection.
    func (db *DB) putConn(dc *driverConn, err error, resetSession bool) {
    	if !errors.Is(err, driver.ErrBadConn) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        auto add_op =
            dyn_cast_or_null<TFL::AddOp>(fc_op.getInput().getDefiningOp());
        if (!add_op) return failure();
        if (add_op.getFusedActivationFunction() != "NONE") return failure();
    
        // Don't match adds where the added constant is not 1D.
        {
          auto addend_shape = mlir::cast<ShapedType>(add_op.getRhs().getType());
          if (!addend_shape.hasStaticShape()) return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top