Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for explainTo (0.14 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    				kind = "enum"
    			}
    			ret = &ElaboratedType{Kind: kind, Type: ret}
    			break
    		}
    
    		ret = st.templateParam()
    		if len(st.str) > 0 && st.str[0] == 'I' {
    			// See the function comment to explain this.
    			if !isCast {
    				st.subs.add(ret)
    				args := st.templateArgs()
    				ret = &Template{Name: ret, Args: args}
    			} else {
    				ret = st.demangleCastTemplateArgs(ret, true)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

            public int hashCode() {
                return Objects.hashCode(conventionName);
            }
        }
    
        /**
         * Represents a statement in a script. Each statement has an optional comment that explains its purpose.
         */
        public interface Statement {
            enum Type {Empty, Single, Group}
    
            @Nullable
            String getComment();
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/type.go

    		nt.extra = &x
    	case TARRAY:
    		x := *t.extra.(*Array)
    		nt.extra = &x
    	case TTUPLE, TSSA, TRESULTS:
    		base.Fatalf("ssa types cannot be copied")
    	}
    	// TODO(mdempsky): Find out why this is necessary and explain.
    	if t.underlying == t {
    		nt.underlying = &nt
    	}
    	return &nt
    }
    
    func (f *Field) Copy() *Field {
    	nf := *f
    	return &nf
    }
    
    func (t *Type) wantEtype(et Kind) {
    	if t.kind != et {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	sort.SliceStable(result, func(i, j int) bool {
    		return result[i].CreatedAt > result[j].CreatedAt
    	})
    	klog.V(4).InfoS("Retrieved pods from runtime", "all", all)
    	return result, nil
    }
    
    // containerKillReason explains what killed a given container
    type containerKillReason string
    
    const (
    	reasonStartupProbe        containerKillReason = "StartupProbe"
    	reasonLivenessProbe       containerKillReason = "LivenessProbe"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  5. src/time/time_test.go

    	"os"
    	"runtime"
    	"strings"
    	"sync"
    	"testing"
    	"testing/quick"
    	. "time"
    )
    
    // We should be in PST/PDT, but if the time zone files are missing we
    // won't be. The purpose of this test is to at least explain why some of
    // the subsequent tests fail.
    func TestZoneData(t *testing.T) {
    	lt := Now()
    	// PST is 8 hours west, PDT is 7 hours west. We could use the name but it's not unique.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    project build script. This makes it easier to keep plugin versions consistent across projects within a build. The approach also improves the performance of the build.
    
    The <<plugins#sec:subprojects_plugins_dsl,Using Gradle plugins>> chapter explains how you can declare plugins in the root project build script with a version and then apply them to the appropriate subprojects' build scripts. What follows is an example of this approach using three subprojects and three plugins. Note how the root...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. docs/bucket/notifications/README.md

    Read more about sections `cluster_id`, `client_id` on [NATS documentation](https://github.com/nats-io/nats-streaming-server/blob/master/README.md). Section `maxPubAcksInflight` is explained [here](https://github.com/nats-io/stan.go#publisher-rate-limiting).
    
    ### Step 2: Enable NATS bucket notification using MinIO client
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    				fmt.Fprintf(os.Stderr, "go: %v\n", c.String())
    			}
    		}
    
    		// modload.EditBuildList reports constraint errors at
    		// the module level, but 'go get' operates on packages.
    		// Rewrite the errors to explain them in terms of packages.
    		reason := func(m module.Version) string {
    			rv, ok := r.resolvedVersion[m.Path]
    			if !ok {
    				return fmt.Sprintf("(INTERNAL ERROR: no reason found for %v)", m)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/load.go

    				// for pkg to either the original error or the one returned by
    				// queryImport. The existing error indicates only that we couldn't find
    				// the package, whereas the query error also explains why we didn't fix
    				// the problem — so we prefer the latter.
    				pkg.err = err
    			}
    
    			// err is nil, but we intentionally leave pkg.err non-nil and pkg.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top