Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for Reports (0.24 sec)

  1. src/reflect/value.go

    		return v.Type().Comparable()
    	}
    }
    
    // Equal reports true if v is equal to u.
    // For two invalid values, Equal will report true.
    // For an interface value, Equal will compare the value within the interface.
    // Otherwise, If the values have different types, Equal will report false.
    // Otherwise, for arrays and structs Equal will compare each element in order,
    // and report false if it finds non-equal elements.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. api/maven-api-model/src/main/mdo/maven.mdo

              <version>4.0.0+</version>
              <description>
                This element includes the specification of report plugins to use
                to generate the reports on the Maven-generated site.
                These reports will be run when a user executes {@code mvn site}.
                All the reports will be included in the navigation bar for browsing.
              </description>
              <association>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    // and because the eventual real load of the test imports (during 'go test')
    // can produce better error messages if it starts with the original paths.
    // The initial load of p loads all the non-test imports and rewrites
    // the vendored paths, so nothing should ever call p.vendored(p.Imports).
    func (p *Package) Resolve(imports []string) []string {
    	if len(imports) > 0 && len(p.Imports) > 0 && &imports[0] == &p.Imports[0] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. src/net/http/server.go

    	}
    	if isH2Upgrade {
    		w.closeAfterReply = true
    	}
    	w.cw.res = w
    	w.w = newBufioWriterSize(&w.cw, bufferBeforeChunkingSize)
    	return w, nil
    }
    
    // http1ServerSupportsRequest reports whether Go's HTTP/1.x server
    // supports the given request.
    func http1ServerSupportsRequest(req *Request) bool {
    	if req.ProtoMajor == 1 {
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. src/database/sql/sql.go

    		if !nextResultSet.HasNextResultSet() {
    			doClose = true
    		}
    		return doClose, false
    	}
    	return false, true
    }
    
    // NextResultSet prepares the next result set for reading. It reports whether
    // there is further result sets, or false if there is no further result set
    // or if there is an error advancing to it. The [Rows.Err] method should be consulted
    // to distinguish between the two cases.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    org:foo:[1.0,) -> 1.0
    \\--- compileClasspath
    """
            where:
            type << ['configuration', 'dependency']
        }
    
        def "reports 2nd level dependency conflicts"() {
            given:
            mavenRepo.with {
                module('planet', 'earth', '3.0.0')
                    .dependsOn('planet', 'venus', '2.0.0')
                    .publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  7. cmd/metrics-v2.go

    	}
    }
    
    func getClusterRepLinkOnlineMD() MetricDescription {
    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    		Subsystem: replicationSubsystem,
    		Name:      linkOnline,
    		Help:      "Reports whether replication link is online (1) or offline(0)",
    		Type:      gaugeMetric,
    	}
    }
    
    func getClusterRepLinkCurrOfflineDurationMD() MetricDescription {
    	return MetricDescription{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //
    //	    // Dependency information
    //	    Imports      []string          // import paths used by this package
    //	    ImportMap    map[string]string // map from source import to ImportPath (identity entries omitted)
    //	    Deps         []string          // all (recursively) imported dependencies
    //	    TestImports  []string          // imports from TestGoFiles
    //	    XTestImports []string          // imports from XTestGoFiles
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/asm6.go

    	lower3bits := reg[r]
    	high4bit := regrex[r] & Rxr << 1
    	high5bit := regrex[r] & RxrEvex << 0
    	return lower3bits | high4bit | high5bit
    }
    
    // avx2gatherValid reports whether p satisfies AVX2 gather constraints.
    // Reports errors via ctxt.
    func avx2gatherValid(ctxt *obj.Link, p *obj.Prog) bool {
    	// If any pair of the index, mask, or destination registers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    		pollerPollUntil := sched.pollUntil.Load()
    		if pollerPollUntil == 0 || pollerPollUntil > pollUntil {
    			netpollBreak()
    		}
    	}
    	stopm()
    	goto top
    }
    
    // pollWork reports whether there is non-background work this P could
    // be doing. This is a fairly lightweight check to be used for
    // background work loops, like idle GC. It checks a subset of the
    // conditions checked by the actual scheduler.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top