Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 114 for Everything (0.37 sec)

  1. src/cmd/compile/internal/types2/stmt.go

    			sExtra = p.ElemList[2]
    		}
    	}
    	isDef := rclause.Def
    	rangeVar := rclause.X
    	noNewVarPos := s
    
    	// Do not use rclause anymore.
    	rclause = nil
    
    	// Everything from here on is shared between cmd/compile/internal/types2 and go/types.
    
    	// check expression to iterate over
    	var x operand
    	check.expr(nil, &x, rangeVar)
    
    	// determine key/value types
    	var key, val Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

        // This pass operates on MHLO control flow ops so it should be legalized
        // after the control flow ops are legalized.
        pm.addPass(mlir::mhlo::CreateLegalizeTFCommunicationPass());
    
        // Everything should be MHLO after this.
        if (!allow_partial_conversion) {
          pm.addNestedPass<mlir::func::FuncOp>(
              mlir::mhlo::CreateVerifyTFXLALegalizationPass(legalize_chlo));
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  3. src/crypto/x509/verify.go

    	return true, nil
    }
    
    func matchDomainConstraint(domain, constraint string) (bool, error) {
    	// The meaning of zero length constraints is not specified, but this
    	// code follows NSS and accepts them as matching everything.
    	if len(constraint) == 0 {
    		return true, nil
    	}
    
    	domainLabels, ok := domainToReverseLabels(domain)
    	if !ok {
    		return false, fmt.Errorf("x509: internal error: cannot parse domain %q", domain)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    	if trimPath == "" {
    		// If the trim path is not configured, try to guess it heuristically:
    		// search for basename of each search path in the original path and, if
    		// found, strip everything up to and including the basename. So, for
    		// example, given original path "/some/remote/path/my-project/foo/bar.c"
    		// and search path "/my/local/path/my-project" the heuristic will return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    That is, instead of composing your flavor of the library from different feature variants, you select one of the pre-composed variants (offering everything in one jar).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  6. operator/cmd/mesh/manifest-generate_test.go

    			}
    		})
    	}
    }
    
    func selectorMatches(t *testing.T, selector *metav1.LabelSelector, labels klabels.Set) bool {
    	t.Helper()
    	// From webhook spec: "Default to the empty LabelSelector, which matches everything."
    	if selector == nil {
    		return true
    	}
    	s, err := metav1.LabelSelectorAsSelector(selector)
    	if err != nil {
    		t.Fatal(err)
    	}
    	return s.Matches(labels)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/macho.go

    			ml.data[1] = uint32(s7)
    		}
    	}
    
    	a := machowrite(ctxt, ctxt.Arch, ctxt.Out, ctxt.LinkMode)
    	if int32(a) > HEADR {
    		Exitf("HEADR too small: %d > %d", a, HEADR)
    	}
    
    	// Now we have written everything. Compute the code signature (which
    	// is a hash of the file content, so it must be done at last.)
    	if ctxt.IsInternal() && ctxt.NeedCodeSign() {
    		cs := ldr.Lookup(".machocodesig", 0)
    		data := ctxt.Out.Data()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  8. src/runtime/map_test.go

    		delete(m, i)
    	}
    	runtime.MapTombstoneCheck(m)
    	// Add new entries to fill in holes.
    	for i := N; i < 3*N/2; i++ {
    		m[i] = i
    	}
    	runtime.MapTombstoneCheck(m)
    	// Delete everything.
    	for i := 0; i < 3*N/2; i++ {
    		delete(m, i)
    	}
    	runtime.MapTombstoneCheck(m)
    }
    
    type canString int
    
    func (c canString) String() string {
    	return fmt.Sprintf("%d", int(c))
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  9. src/runtime/trace.go

    		status := goStatusToTraceGoStatus(ug.status, ug.waitreason)
    		statusWriter = statusWriter.writeGoStatus(ug.goid, ug.mid, status, ug.inMarkAssist, ug.stackID)
    	}
    	statusWriter.flush().end()
    
    	// Read everything out of the last gen's CPU profile buffer.
    	traceReadCPU(gen)
    
    	// Flush CPU samples, stacks, and strings for the last generation. This is safe,
    	// because we're now certain no M is writing to the last generation.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  10. pilot/pkg/model/service.go

    		ep.HostName == other.HostName &&
    		ep.SubDomain == other.SubDomain &&
    		ep.HealthStatus == other.HealthStatus &&
    		ep.NodeName == other.NodeName
    	if !eq {
    		return false
    	}
    
    	// check everything else
    	if !maps.Equal(ep.Labels, other.Labels) {
    		return false
    	}
    
    	// Compare discoverability by name
    	var epp string
    	if ep.DiscoverabilityPolicy != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top