Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 136 for Reports (0.19 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    In the above example, do you get a `toArchive/reports` directory, or does everything in `reports` go straight into `toArchive`?
    The answer is the latter. If a directory is part of the `from()` path, then it _won't_ appear in the destination.
    
    So how do you ensure that `reports` itself is copied across, but not any other directory in `${layout.buildDirectory}`?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    			}
    		}
    	}
    	return prefix
    }
    
    // anonymousStructTypedef reports whether dt is a C typedef for an anonymous
    // struct.
    func (c *typeConv) anonymousStructTypedef(dt *dwarf.TypedefType) bool {
    	st, ok := dt.Type.(*dwarf.StructType)
    	return ok && st.StructName == ""
    }
    
    // badPointerTypedef reports whether dt is a C typedef that should not be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. src/testing/testing.go

    // as "changed by a cmd/link -X option".
    var testBinary = "0"
    
    // Testing reports whether the current code is being run in a test.
    // This will report true in programs created by "go test",
    // false in programs created by "go build".
    func Testing() bool {
    	return testBinary == "1"
    }
    
    // CoverMode reports what the test coverage mode is set to. The
    // values are "set", "count", or "atomic". The return value will be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    	// If we didn't scan all of the imports from the main module, or didn't use
    	// imports.AnyTags, then we didn't necessarily load every package that
    	// contributes “direct” imports — so we can't safely mark existing direct
    	// dependencies in ld.requirements as indirect-only. Propagate them as direct.
    	loadedDirect := ld.allPatternIsRoot && maps.Equal(ld.Tags, imports.AnyTags())
    	if loadedDirect {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. src/time/time.go

    	if t.wall&hasMonotonic == 0 {
    		return 0
    	}
    	return t.ext
    }
    
    // After reports whether the time instant t is after u.
    func (t Time) After(u Time) bool {
    	if t.wall&u.wall&hasMonotonic != 0 {
    		return t.ext > u.ext
    	}
    	ts := t.sec()
    	us := u.sec()
    	return ts > us || ts == us && t.nsec() > u.nsec()
    }
    
    // Before reports whether the time instant t is before u.
    func (t Time) Before(u Time) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  6. src/go/types/expr.go

    func (check *Checker) matchTypes(x, y *operand) {
    	// mayConvert reports whether the operands x and y may
    	// possibly have matching types after converting one
    	// untyped operand to the type of the other.
    	// If mayConvert returns true, we try to convert the
    	// operands to each other's types, and if that fails
    	// we report a conversion failure.
    	// If mayConvert returns false, we continue without an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. src/net/http/request.go

    }
    
    // outgoingLength reports the Content-Length of this outgoing (Client) request.
    // It maps 0 into -1 (unknown) when the Body is non-nil.
    func (r *Request) outgoingLength() int64 {
    	if r.Body == nil || r.Body == NoBody {
    		return 0
    	}
    	if r.ContentLength != 0 {
    		return r.ContentLength
    	}
    	return -1
    }
    
    // requestMethodUsuallyLacksBody reports whether the given request
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  8. src/cmd/dist/test.go

    	return goos == "ios"
    }
    
    func (t *tester) out(v string) {
    	if t.json {
    		return
    	}
    	if t.banner == "" {
    		return
    	}
    	fmt.Println("\n" + t.banner + v)
    }
    
    // extLink reports whether the current goos/goarch supports
    // external linking. This should match the test in determineLinkMode
    // in cmd/link/internal/ld/config.go.
    func (t *tester) extLink() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            when:
            configurationCacheRun()
    
            then:
            fixture.assertStateLoaded()
            result.assertTasksExecuted(":help")
            assertTransformed()
        }
    
        def "reports failure to transform prebuilt file dependency"() {
            createDirs("a")
            settingsFile << """
                include 'a'
            """
            setupBuildWithColorTransform()
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/resource_op_lifting.mlir

      %read = "tf.ReadVariableOp"(%id) : (tensor<*x!tf_type.resource<tensor<f32>>>) -> tensor<f32>
      // CHECK-NEXT: return %[[CARG0]]
      func.return %read : tensor<f32>
    }
    
    // -----
    
    // Tests that pass reports error on non-aliasing while input/output resources.
    
    func.func @cluster_with_loop() -> () {
      %0 = "tf.VarHandleOp"() {container = "c", shared_name = "v"} : () -> tensor<*x!tf_type.resource<tensor<f32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 74K bytes
    - Viewed (0)
Back to top