Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,309 for MODIFIED (0.13 sec)

  1. src/internal/types/testdata/fixedbugs/issue59190.go

    var a [1 << 30]E
    var _ = unsafe.Sizeof(a /* ERROR "too large" */ )
    
    var s struct {
    	_ [1 << 30]E
    	x int
    }
    var _ = unsafe.Offsetof(s /* ERROR "too large" */ .x)
    
    // Test case from issue (modified so it also triggers on 32-bit platforms).
    
    type A [1]int
    type S struct {
    	x A
    	y [1 << 30]A
    	z [1 << 30]struct{}
    }
    type T [1 << 30][1 << 30]S
    
    func _() {
    	var a A
    	var s S
    	var t T
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 27 16:52:49 UTC 2023
    - 684 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/work_env.txt

    go env GOWORK
    ! stdout .
    go env
    stdout 'GOWORK=("")?'
    
    cd src
    go env GOWORK
    stdout 'go.work'
    
    env GOWORK='off'
    go env GOWORK
    stdout 'off'
    
    ! go env -w GOWORK=off
    stderr '^go: GOWORK cannot be modified$'
    
    -- go.work --
    go 1.18
    
    use a
    -- a/go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 05 14:28:38 UTC 2023
    - 399 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenHttpRepoResolveIntegrationTest.groovy

                void handle(HttpServletRequest request, HttpServletResponse response) {
                    response.sendError(304, 'Not Modified')
                }
            })
    
            then:
            fails 'retrieve'
    
            failure.assertHasCause('Response 304: Not Modified has no content!')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependenciesExtensionModule.java

            return map.containsKey(key) ? map.get(key).toString() : null;
        }
    
        /**
         * Modifies a dependency.
         *
         * @param dependencyNotation dependency to modify
         * @return the modified dependency
         * @see DependencyFactory#create(CharSequence) Valid dependency notation for this method
         * @since 8.0
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/framer/framer.go

    // byte slice will be modified the next time ReadFrame is invoked and should not be altered.
    func (r *jsonFrameReader) Read(data []byte) (int, error) {
    	// Return whatever remaining data exists from an in progress frame
    	if n := len(r.remaining); n > 0 {
    		if n <= len(data) {
    			//nolint:staticcheck // SA4006,SA4010 underlying array of data is modified here.
    			data = append(data[0:0], r.remaining...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 13:33:12 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/watch/filter.go

    limitations under the License.
    */
    
    package watch
    
    import (
    	"sync"
    )
    
    // FilterFunc should take an event, possibly modify it in some way, and return
    // the modified event. If the event should be ignored, then return keep=false.
    type FilterFunc func(in Event) (out Event, keep bool)
    
    // Filter passes all events through f before allowing them to pass on.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/issue9400/gccgo.go

    //go:build gccgo
    
    package issue9400
    
    import (
    	"runtime"
    	"sync/atomic"
    )
    
    // The test for the gc compiler resets the stack pointer so that the
    // stack gets modified.  We don't have a way to do that for gccgo
    // without writing more assembly code, which we haven't bothered to
    // do.  So this is not much of a test.
    
    var Baton int32
    
    func RewindAndSetgid() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 612 bytes
    - Viewed (0)
  8. docs_src/generate_clients/tutorial004.js

              }
            }
          }
        }
    
        await fs.promises.writeFile(
          filePath,
          JSON.stringify(openapiContent, null, 2),
        )
        console.log('File successfully modified')
      } catch (err) {
        console.error('Error:', err)
      }
    }
    
    const filePath = './openapi.json'
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 14 11:40:05 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/file/FileTreeElement.java

         *
         * @return true if this element is a directory.
         */
        boolean isDirectory();
    
        /**
         * Returns the last modified time of this file at the time of file traversal.
         *
         * @return The last modified time.
         */
        long getLastModified();
    
        /**
         * Returns the size of this file at the time of file traversal.
         *
         * @return The size, in bytes.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:43:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-configuration/src/integTest/groovy/org/gradle/interal/buildconfiguration/tasks/UpdateDaemonJvmIntegrationTest.groovy

                "(valid case insensitive values: VENDOR_SPECIFIC, J9)")
        }
    
        def "Given already existing build properties When execute updateDaemonJvm with different criteria Then criteria get modified"() {
            given:
            def otherJvm = AvailableJavaHomes.differentVersion
            writeJvmCriteria(Jvm.current())
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top