Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 127 for deltaY (0.19 sec)

  1. pilot/pkg/xds/delta.go

    	var logFiltered string
    	if !req.Delta.IsEmpty() && !requiresResourceNamesModification(w.TypeUrl) {
    		// Some types opt out of this and natively handle req.Delta
    		logFiltered = " filtered:" + strconv.Itoa(len(w.ResourceNames)-len(req.Delta.Subscribed))
    		w = &model.WatchedResource{
    			TypeUrl:       w.TypeUrl,
    			ResourceNames: req.Delta.Subscribed.UnsortedList(),
    		}
    	}
    
    	var res model.Resources
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  2. src/image/gif/writer_test.go

    			sum += delta(r0, r1)
    			sum += delta(g0, g1)
    			sum += delta(b0, b1)
    			n += 3
    		}
    	}
    	return sum / n
    }
    
    // lzw.NewWriter wants an interface which is basically the same thing as gif's
    // writer interface.  This ensures we're compatible.
    var _ writer = blockWriter{}
    
    var testCase = []struct {
    	filename  string
    	tolerance int64
    }{
    	{"../testdata/video-001.png", 1 << 12},
    	{"../testdata/video-001.gif", 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. src/runtime/mstats.go

    	}
    }
    
    // heapStatsDelta contains deltas of various runtime memory statistics
    // that need to be updated together in order for them to be kept
    // consistent with one another.
    type heapStatsDelta struct {
    	// Memory stats.
    	committed       int64 // byte delta of memory committed
    	released        int64 // byte delta of released memory generated
    	inHeap          int64 // byte delta of memory placed in the heap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. src/runtime/netpoll.go

    //     Disable notifications for fd. Return an errno value.
    //
    // func netpoll(delta int64) (gList, int32)
    //     Poll the network. If delta < 0, block indefinitely. If delta == 0,
    //     poll without blocking. If delta > 0, block for up to delta nanoseconds.
    //     Return a list of goroutines built by calling netpollready,
    //     and a delta to add to netpollWaiters when all goroutines are ready.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster.go

    		if dir == model.TrafficDirectionInbound {
    			// Append all inbound clusters because in both stow/delta we always build all inbound clusters.
    			// In reality, the delta building is only for outbound clusters. We need to revist here once we support delta for inbound.
    			// So deletedClusters.Difference(builtClusters) would give us the correct deleted inbound clusters.
    			deletedClusters.Insert(cluster)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  6. pilot/pkg/features/experimental.go

    	DeltaXds = env.Register("ISTIO_DELTA_XDS", true,
    		"If enabled, pilot will only send the delta configs as opposed to the state of the world on a "+
    			"Resource Request. This feature uses the delta xds api, but does not currently send the actual deltas.").Get()
    
    	EnableQUICListeners = env.Register("PILOT_ENABLE_QUIC_LISTENERS", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  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