Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 353 for deltaY (0.13 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/status/naming_controller_test.go

    			existing: []*apiextensionsv1.CustomResourceDefinition{
    				newCRD("alfa.charlie.com").StatusNames("alfa", "delta-singular", "echo-kind", "foxtrot-listkind", "golf-shortname-1", "hotel-shortname-2").NewOrDie(),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 03 16:49:27 UTC 2019
    - 15.7K bytes
    - Viewed (0)
  2. docs/en/docs/img/sponsors/deta-banner.svg

    deta-banner.svg...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 08 17:50:56 UTC 2021
    - 37.3K bytes
    - Viewed (0)
  3. pkg/controller/garbagecollector/dump_test.go

    				types.UID("delta"):   deltaNode(),
    				types.UID("foxtrot"): foxtrotNode(),
    				types.UID("golf"):    golfNode(),
    			},
    			uids: []types.UID{types.UID("delta")},
    			expectNodes: []*dotVertex{
    				NewDOTVertex(deltaNode()),
    				NewDOTVertex(foxtrotNode()),
    				NewDOTVertex(golfNode()),
    			},
    			expectEdges: []dotEdge{
    				{F: types.UID("delta"), T: types.UID("foxtrot")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. src/encoding/gob/debug.go

    	deb.consumed(nb)
    	return string(b)
    }
    
    // delta returns the field delta at the input point. The expect argument,
    // if non-negative, identifies what the value should be.
    func (deb *debugger) delta(expect int) int {
    	delta := int(deb.uint64())
    	if delta < 0 || (expect >= 0 && delta != expect) {
    		errorf("decode: corrupted type: delta %d expected %d", delta, expect)
    	}
    	return delta
    }
    
    // TypeDefinition:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 09:34:41 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/fake.go

    			f.t.Fatalf("failed to create config %v: %v", cfg.Name, err)
    		}
    	}
    
    	// TODO allow passing event handlers for controller
    
    	retry.UntilOrFail(f.t, f.store.HasSynced, retry.Delay(time.Millisecond))
    	retry.UntilOrFail(f.t, f.Registry.HasSynced, retry.Delay(time.Millisecond))
    
    	f.ServiceEntryRegistry.ResyncEDS()
    }
    
    // SetupProxy initializes a proxy for the current environment. This should generally be used when creating
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/groovyPluginTasks.graphml

              <y:Arrows source="delta" target="none"/>
            </y:QuadCurveEdge>
          </data>
        </edge>
        <edge id="e1" source="n5" target="n4">
          <data key="d9">
            <y:QuadCurveEdge straightness="0.1">
              <y:Path sx="70.0" sy="-0.0" tx="-70.0" ty="-10.0"/>
              <y:LineStyle color="#000000" type="line" width="1.0"/>
              <y:Arrows source="delta" target="none"/>
            </y:QuadCurveEdge>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

      EXPECT_TRUE(result.ok());
      EXPECT_EQ(compilation_status.Delta(kMlirCombinedMlirSuccess), 1);
      EXPECT_EQ(compilation_status.Delta(kMlirCombinedMlirFailure), 0);
      EXPECT_EQ(compilation_status.Delta(kMlirCombinedOldSuccess), 1);
      EXPECT_EQ(compilation_status.Delta(kMlirCombinedOldFailure), 0);
      // Old bridge should never be called at all.
      EXPECT_EQ(compilation_status.Delta(kOldBridgeMlirFilteredFailure), 0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/AtomicLongMap.java

      }
    
      /**
       * Adds {@code delta} to the value currently associated with {@code key}, and returns the new
       * value.
       */
      @CanIgnoreReturnValue
      public long addAndGet(K key, long delta) {
        outer:
        while (true) {
          AtomicLong atomic = map.get(key);
          if (atomic == null) {
            atomic = map.putIfAbsent(key, new AtomicLong(delta));
            if (atomic == null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/time/tick_test.go

    			t.Log(e)
    		}
    	}
    
    	for _, test := range []struct {
    		count int
    		delta Duration
    	}{{
    		count: baseCount,
    		delta: baseDelta,
    	}, {
    		count: 8,
    		delta: 1 * Second,
    	}} {
    		count, delta := test.count, test.delta
    		ticker := NewTicker(delta)
    		t0 := Now()
    		for range count / 2 {
    			<-ticker.C
    		}
    		ticker.Reset(delta * 2)
    		for range count - count/2 {
    			<-ticker.C
    		}
    		ticker.Stop()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  10. src/sync/atomic/doc.go

    func AddUint32(addr *uint32, delta uint32) (new uint32)
    
    // AddInt64 atomically adds delta to *addr and returns the new value.
    // Consider using the more ergonomic and less error-prone [Int64.Add] instead
    // (particularly if you target 32-bit platforms; see the bugs section).
    func AddInt64(addr *int64, delta int64) (new int64)
    
    // AddUint64 atomically adds delta to *addr and returns the new value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top