Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 117 for Removes (0.26 sec)

  1. pkg/kubelet/cm/memorymanager/policy_static_test.go

    			if reflect.DeepEqual(block, copyBlock) {
    				// move the element that equals to the block to the end of the slice
    				copyMemoryBlocks[i] = copyMemoryBlocks[len(copyMemoryBlocks)-1]
    
    				// remove the last element from our slice
    				copyMemoryBlocks = copyMemoryBlocks[:len(copyMemoryBlocks)-1]
    
    				break
    			}
    		}
    	}
    
    	return len(copyMemoryBlocks) == 0
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	if err != nil {
    		t.Fatalf("unexpected error from AddUnschedulableIfNotPresent: %v", err)
    	}
    	expectInFlightPods(t, q)
    	// This NodeAdd event moves unschedulablePodInfo and highPriorityPodInfo to the backoffQ,
    	// because of the queueing hint function registered for NodeAdd/fooPlugin.
    	q.MoveAllToActiveOrBackoffQueue(logger, NodeAdd, nil, nil, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

      if (!s.ok()) return s;
    
      GraphDef graphdef_out;
      graph_out->ToGraphDef(&graphdef_out);
      graphdef->Swap(&graphdef_out);
    
      *library = lib_def->ToProto();
      // Remove "_xla_inferred_shapes" attr. They are added by
      // `PerformStaticShapeInferenceBeforeEncapsulation`.
      for (FunctionDef& fdef : *library->mutable_function()) {
        for (NodeDef& node_def : *fdef.mutable_node_def()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/runtime/framework_test.go

    	pl.PreFilterCalled++
    	return nil, nil
    }
    
    func (pl *TestPreFilterPlugin) PreFilterExtensions() framework.PreFilterExtensions {
    	return nil
    }
    
    // TestPreFilterWithExtensionsPlugin implements Add/Remove interfaces.
    type TestPreFilterWithExtensionsPlugin struct {
    	PreFilterCalled int
    	AddCalled       int
    	RemoveCalled    int
    }
    
    func (pl *TestPreFilterWithExtensionsPlugin) Name() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/ppc64/asm9.go

    		o2 = AOP_RRR(OP_MULLD, REGTMP, REGTMP, uint32(p.From.Reg))
    		o3 = AOP_RRR(OP_SUBF|t, uint32(p.To.Reg), REGTMP, uint32(r))
    		/* cases 50,51: removed; can be reused. */
    
    		/* cases 50,51: removed; can be reused. */
    
    	case 52: /* mtfsbNx cr(n) */
    		v := c.regoff(&p.From) & 31
    
    		o1 = AOP_RRR(c.oprrr(p.As), uint32(v), 0, 0)
    
    	case 53: /* mffsX ,fr1 */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  6. api/maven-api-model/src/main/mdo/maven.mdo

              <defaultValue>true</defaultValue>
              <type>boolean</type>
              <description>Whether to send notifications on warning.</description>
            </field>
            <!-- TODO: Remove it after continuum alpha-3 release -->
            <field>
              <name>address</name>
              <version>4.0.0+</version>
              <type>String</type>
              <description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    			ExpectedThreeWay:       `{"array":[1,2,3],"complex":{"nested":true},"scalar":true}`,
    			ExpectedThreeWayResult: `{"array":[1,2,3],"complex":{"nested":true},"name":"foo","scalar":true}`,
    		},
    		"removed only": {
    			Original: `{"name":"foo","scalar":true,"complex":{"nested":true}}`,
    			Current:  `{"name":"foo","scalar":true,"complex":{"nested":true},"array":[1,2,3]}`,
    			Modified: `{"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)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          }
        }
    
        // Verify that all operations except the terminator have exactly one
        // result of type supported by TFLite (or is a ControlType, which
        // will be removed later by ExtractControlEdges.)
        for (auto& inst : bb) {
          if (inst.hasTrait<mlir::OpTrait::IsTerminator>()) break;
    
          for (auto result : inst.getResults()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  9. cmd/server_test.go

    }
    
    func (s *TestSuiteCommon) TestPutBucket(c *check) {
    	// generate a random bucket name.
    	bucketName := getRandomBucketName()
    	// Block 1: Testing for racy access
    	// The assertion is removed from this block since the purpose of this block is to find races
    	// The purpose this block is not to check for correctness of functionality
    	// Run the test with -race flag to utilize this
    	var wg sync.WaitGroup
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      std::queue<func::FuncOp> queue_;
    
      int64_t graph_version_;
    
      // Op types for which shape inference should be skipped.
      llvm::SmallDenseSet<TypeID> ops_to_skip_;
    
      // TODO(b/154065712): Remove propagate_caller_callee_constants once using
      // SCCP pass instead.
      bool propagate_caller_callee_constants_;
    
      // XlaCallModule loader, which is used to deserialize the StableHLO module in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top