Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 774 for gaps (0.06 sec)

  1. guava/src/com/google/common/collect/TreeRangeMap.java

            Cut<K> upperBound = entry.getLowerBound();
            if (!lowerBound.equals(upperBound)) {
              gaps.put(lowerBound, new RangeMapEntry<K, V>(lowerBound, upperBound, value));
            }
            lowerBound = entry.getUpperBound();
          }
          if (!lowerBound.equals(range.upperBound)) {
            gaps.put(lowerBound, new RangeMapEntry<K, V>(lowerBound, range.upperBound, value));
          }
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 04 14:31:50 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  2. src/cmd/link/elf_test.go

    			// the PIE dynamic data sections plus the
    			// difference in size of the .got and .plt
    			// sections if they exist.
    			// We ignore unallocated sections.
    			// There may be gaps between non-writeable and
    			// writable PT_LOAD segments. We also skip those
    			// gaps (see issue #36023).
    
    			textsize := func(ef *elf.File, name string) uint64 {
    				for _, s := range ef.Sections {
    					if s.Name == ".text" {
    						return s.Size
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 16:34:01 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/wasm/a.out.go

    	AGet = obj.ABaseWasm + obj.A_ARCHSPECIFIC + iota
    	ASet
    	ATee
    	ANot // alias for I32Eqz
    
    	// The following are low-level WebAssembly instructions.
    	// Their order matters, since it matches the opcode encoding.
    	// Gaps in the encoding are indicated by comments.
    
    	AUnreachable // opcode 0x00
    	ANop
    	ABlock
    	ALoop
    	AIf
    	AElse
    
    	AEnd // opcode 0x0B
    	ABr
    	ABrIf
    	ABrTable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 05:28:55 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/environment/base_test.go

    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		MustBaseEnvSet(version.MajorMinor(1, uint(i)), true)
    	}
    }
    
    // TestLibraryCoverage lints the management of libraries in baseOpts by
    // checking for:
    //
    //   - No gaps and overlap in library inclusion, including when libraries are version bumped
    //   - RemovedVersion is always greater than IntroducedVersion
    //   - Libraries are not removed once added (although they can be replaced with new versions)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/localize_var_handles.cc

      }
    
      const TF::ResourceDataflowState* state =
          solver.lookupState<TF::ResourceDataflowState>(resource);
      if (!state) {
        // Can't actually happen. Even for gaps in the dataflow, we'll receive
        // the initial state.
        return;
      }
      auto ops = state->getValue().ops;
      if (ops.size() != 1) {
        return;
      }
      Operation* source = *ops.begin();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 23:53:00 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. okhttp-tls/src/main/kotlin/okhttp3/tls/HandshakeCertificates.kt

         * fail. Use a custom [HostnameVerifier] to ignore such problems.
         *
         * Other TLS features are still used but provide no security benefits in absence of the above
         * gaps. For example, an insecure TLS connection is capable of negotiating HTTP/2 with ALPN and
         * it also has a regular-looking handshake.
         *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/cgocall/cgocall.go

    				}
    			}
    		}
    		return true
    	})
    }
    
    // typeCheckCgoSourceFiles returns type-checked syntax trees for the raw
    // cgo files of a package (those that import "C"). Such files are not
    // Go, so there may be gaps in type information around C.f references.
    //
    // This checker was initially written in vet to inspect raw cgo source
    // files using partial type information. However, Analyzers in the new
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  8. src/regexp/syntax/regexp.go

    			b.WriteString(`^\x00-\x{10FFFF}`)
    		} else if re.Rune[0] == 0 && re.Rune[len(re.Rune)-1] == unicode.MaxRune && len(re.Rune) > 2 {
    			// Contains 0 and MaxRune. Probably a negated class.
    			// Print the gaps.
    			b.WriteRune('^')
    			for i := 1; i < len(re.Rune)-1; i += 2 {
    				lo, hi := re.Rune[i]+1, re.Rune[i+1]-1
    				escape(b, lo, lo == '-')
    				if lo != hi {
    					if hi != lo+1 {
    						b.WriteRune('-')
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/loadbalancer/loadbalancer_test.go

    				g.Expect(localityEndpoint.Priority).To(Equal(uint32(3)))
    			} else {
    				g.Expect(localityEndpoint.Priority).To(Equal(uint32(4)))
    			}
    		}
    	})
    
    	t.Run("Failover: priorities with gaps", func(t *testing.T) {
    		g := NewWithT(t)
    		env := buildEnvForClustersWithFailover()
    		cluster := buildSmallCluster()
    		ApplyLocalityLoadBalancer(cluster.LoadAssignment, nil, locality, nil, env.Mesh().LocalityLbSetting, true)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  10. pkg/kubelet/status/status_manager_test.go

    				expectWaiting(t, status.InitContainerStatuses[1].State)
    				expectWaiting(t, status.ContainerStatuses[0].State)
    			},
    		},
    		{
    			name: "uninitialized pod defaults gaps",
    			pod: newPod(4, 1, func(pod *v1.Pod) {
    				pod.Spec.RestartPolicy = v1.RestartPolicyNever
    				pod.Status.Phase = v1.PodPending
    				pod.Status.InitContainerStatuses = []v1.ContainerStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
Back to top