Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 942 for hyphens (0.21 sec)

  1. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/Manifest.java

         * {@link org.gradle.api.java.archives.Manifest} or a file path as interpreted by {@link org.gradle.api.Project#file(Object)}.
         *
         * The merge is not happening instantaneously. It happens either before writing or when {@link #getEffectiveManifest()}
         * is called.
         *
         * @return this
         */
        Manifest from(Object... mergePath);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. src/runtime/heap_test.go

    import (
    	"testing"
    	_ "unsafe"
    )
    
    //go:linkname heapObjectsCanMove runtime.heapObjectsCanMove
    func heapObjectsCanMove() bool
    
    func TestHeapObjectsCanMove(t *testing.T) {
    	if heapObjectsCanMove() {
    		// If this happens (or this test stops building),
    		// it will break go4.org/unsafe/assume-no-moving-gc.
    		t.Fatalf("heap objects can move!")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 18:35:49 UTC 2023
    - 529 bytes
    - Viewed (0)
  3. pkg/test/util/yml/parts.go

    	result := map[string]string{}
    	for _, cfg := range cfgs {
    		var typeMeta metav1.TypeMeta
    		if e := yaml.Unmarshal([]byte(cfg), &typeMeta); e != nil {
    			// Ignore invalid parts. This most commonly happens when it's empty or contains only comments.
    			continue
    		}
    		result[typeMeta.Kind] = JoinString(result[typeMeta.Kind], cfg)
    	}
    	return result
    }
    
    // SplitYamlByKind splits the given YAML into parts indexed by kind.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/example.com_retract_rename_v1.0.0-bad.txt

    Module example.com/retract/rename is renamed in a later version.
    
    This happens frequently when a repository is renamed or when a go.mod file
    is added for the first time with a custom module path.
    -- .info --
    {"Version":"v1.0.0-bad"}
    -- .mod --
    module example.com/retract/rename
    
    go 1.16
    -- go.mod --
    module example.com/retract/rename
    
    go 1.16
    -- rename.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 17:59:55 UTC 2020
    - 374 bytes
    - Viewed (0)
  5. releasenotes/notes/29427.yaml

          When upgrading your Istio data plane from 1.7.x (where x < 5) to 1.7.5 or newer, you may 
          observe connectivity issues between your gateway and your sidecars or among your sidecars 
          with 503 errors in the log. This happens when 1.7.5+ proxies send HTTP 1xx or 204 response 
          codes with headers that 1.7.x proxies reject. To fix this, upgrade all your 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 08 21:29:31 UTC 2020
    - 653 bytes
    - Viewed (0)
  6. src/cmd/internal/test2json/testdata/benchshort.test

    # This file ends in an early EOF to trigger the Benchmark prefix test,
    # which only happens when a benchmark prefix is seen ahead of the \n.
    # Normally that's due to the benchmark running and the \n coming later,
    # but to avoid questions of timing, we just use a file with no \n at all.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 01:53:38 UTC 2018
    - 318 bytes
    - Viewed (0)
  7. pkg/backoff/exponential.go

    	NextBackOff() time.Duration
    	// Reset to initial state.
    	Reset()
    	// RetryWithContext tries the operation until it does not return error,
    	// or when the context expires, whichever happens first.
    	RetryWithContext(ctx context.Context, operation func() error) error
    }
    
    type Option struct {
    	InitialInterval time.Duration
    	MaxInterval     time.Duration
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 25 01:53:48 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/filters/waitgroup.go

    // when invoked from multiple goroutines.
    type RequestWaitGroup interface {
    	// Add adds delta, which may be negative, similar to sync.WaitGroup.
    	// If Add with a positive delta happens after Wait, it will return error,
    	// which prevent unsafe Add.
    	Add(delta int) error
    
    	// Done decrements the WaitGroup counter.
    	Done()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 10 21:18:55 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/example.com_retract_rename_v1.9.0-new.txt

    Module example.com/retract/rename is renamed in this version.
    
    This happens frequently when a repository is renamed or when a go.mod file
    is added for the first time with a custom module path.
    -- .info --
    {"Version":"v1.9.0-new"}
    -- .mod --
    module example.com/retract/newname
    
    go 1.16
    
    // bad
    retract v1.0.0-bad
    -- go.mod --
    module example.com/retract/newname
    
    go 1.16
    
    // bad
    retract v1.0.0-bad
    -- newname.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 17:59:55 UTC 2020
    - 429 bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/issue9400/asm_riscv64.s

    // license that can be found in the LICENSE file.
    
    //go:build riscv64 && gc
    
    #include "textflag.h"
    
    TEXT ·RewindAndSetgid(SB),NOSPLIT|NOFRAME,$0-0
    	// Rewind stack pointer so anything that happens on the stack
    	// will clobber the test pattern created by the caller
    	ADD	$(1024*8), X2
    
    	// Ask signaller to setgid
    	MOV	$1, X5
    	FENCE
    	MOVW	X5, ·Baton(SB)
    	FENCE
    
    	// Wait for setgid completion
    loop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 659 bytes
    - Viewed (0)
Back to top