Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 161 for Invert (1.73 sec)

  1. pilot/pkg/model/push_context_test.go

    				}
    				deletes := sets.Set[ConfigKey]{}
    				for _, key := range tt.deletes {
    					store.Delete(gvk.EnvoyFilter, key.Name, key.Namespace, nil)
    					deletes.Insert(key)
    				}
    
    				createSet := sets.New(maps.Keys(creates)...)
    				updateSet := sets.New(maps.Keys(updates)...)
    				changes := deletes.Union(createSet).Union(updateSet)
    
    				pc2 := NewPushContext()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  2. cmd/erasure-server-pool.go

    		defer updateTicker.Stop()
    		var lastUpdate time.Time
    
    		// We need to merge since we will get the same buckets from each pool.
    		// Therefore to get the exact bucket sizes we must merge before we can convert.
    		var allMerged dataUsageCache
    
    		update := func() {
    			mu.Lock()
    			defer mu.Unlock()
    
    			allMerged = dataUsageCache{Info: dataUsageCacheInfo{Name: dataUsageRoot}}
    			for _, info := range results {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    However, their changes would not invalidate the configuration cache afterward.
    Starting with Gradle 8.4, such undeclared configuration inputs are correctly tracked.
    +
    To temporarily revert to the earlier behavior, set the Gradle property `org.gradle.configuration-cache.inputs.unsafe.ignore.in-serialization` to `true`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  4. src/go/parser/parser.go

    		return true
    	}
    	if p.tok != follow {
    		msg := "missing ','"
    		if p.tok == token.SEMICOLON && p.lit == "\n" {
    			msg += " before newline"
    		}
    		p.error(p.pos, msg+" in "+context)
    		return true // "insert" comma and continue
    	}
    	return false
    }
    
    func assert(cond bool, msg string) {
    	if !cond {
    		panic("go/parser internal error: " + msg)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    				patchedPodNames.Insert(action.(clienttesting.PatchAction).GetName())
    				return true, nil, nil
    			})
    			client.PrependReactor("delete", "pods", func(action clienttesting.Action) (bool, runtime.Object, error) {
    				deletedPodNames.Insert(action.(clienttesting.DeleteAction).GetName())
    				return true, nil, nil
    			})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewrite.go

    // because the arguments are known to be disjoint.
    // This is used as a check for replacing memmove with Move ops.
    func isInlinableMemmove(dst, src *Value, sz int64, c *Config) bool {
    	// It is always safe to convert memmove into Move when its arguments are disjoint.
    	// Move ops may or may not be faster for large sizes depending on how the platform
    	// lowers them, so we only perform this optimization on platforms that we know to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  7. cluster/gce/windows/k8s-node-setup.psm1

    function ConvertTo_MaskLength
    {
      param(
        [parameter(Mandatory = $True, Position = 0)]
        [Net.IPAddress] $SubnetMask
      )
    
      $bits = "$($SubnetMask.GetAddressBytes() | % {
        [Convert]::ToString($_, 2)
      } )" -replace "[\s0]"
      return $bits.Length
    }
    
    # Returns a network adapter object for the "management" interface via which the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  8. docs/bucket/notifications/README.md

    ### Step 1: Ensure postgresql minimum requirements are met
    
    MinIO requires PostgreSQL version 9.5 or above. MinIO uses the [`INSERT ON CONFLICT`](https://www.postgresql.org/docs/9.5/static/sql-insert.html#SQL-ON-CONFLICT) (aka UPSERT) feature, introduced in version 9.5 and the [JSONB](https://www.postgresql.org/docs/9.4/static/datatype-json.html) data-type introduced in version 9.4.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/init.go

    			// that its existing contents match something between Go 1.11 and 1.16.
    			// Go 1.11 through 1.16 do not support graph pruning, but the latest Go
    			// version uses a pruned module graph — so we need to convert the
    			// requirements to support pruning.
    			if gover.Compare(v, gover.ExplicitIndirectVersion) >= 0 {
    				var err error
    				rs, err = convertPruning(ctx, rs, pruned)
    				if err != nil {
    					return nil, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  10. cmd/xl-storage.go

    	info.Rotational = s.rotational
    	info.MountPath = s.drivePath
    	info.Endpoint = s.endpoint.String()
    	info.Scanning = atomic.LoadInt32(&s.scanning) == 1
    	return info, err
    }
    
    // getVolDir - will convert incoming volume names to
    // corresponding valid volume names on the backend in a platform
    // compatible way for all operating systems. If volume is not found
    // an error is generated.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (2)
Back to top