Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 79 of 79 for Replayed (0.14 sec)

  1. src/crypto/tls/handshake_client_test.go

    	ticket := getTicket()
    	testResumeState("Resume", true)
    	if bytes.Equal(ticket, getTicket()) {
    		t.Fatal("ticket didn't change after resumption")
    	}
    
    	// An old session ticket is replaced with a ticket encrypted with a fresh key.
    	ticket = getTicket()
    	serverConfig.Time = func() time.Time { return time.Now().Add(24*time.Hour + time.Minute) }
    	testResumeState("ResumeWithOldTicket", true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    	}
    	var span *mspan
    	var header **_type
    	var x unsafe.Pointer
    	noscan := typ == nil || !typ.Pointers()
    	// In some cases block zeroing can profitably (for latency reduction purposes)
    	// be delayed till preemption is possible; delayedZeroing tracks that state.
    	delayedZeroing := false
    	// Determine if it's a 'small' object that goes into a size-classed span.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	_, _, errno := Syscall(SYS_SYSLOG, uintptr(typ), uintptr(p), uintptr(arg))
    	if errno != 0 {
    		return errnoErr(errno)
    	}
    	return nil
    }
    
    // RemoteIovec is Iovec with the pointer replaced with an integer.
    // It is used for ProcessVMReadv and ProcessVMWritev, where the pointer
    // refers to a location in a different process' address space, which
    // would confuse the Go garbage collector.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Plugins and build scripts must not register any build listeners.
    That is listeners registered at configuration time that get notified at execution time.
    For example a `BuildListener` or a `TaskExecutionListener`.
    
    These should be replaced by <<build_services#build_services,build services>>, registered to receive information about <<build_services#operation_listener, task execution>> if needed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    | Indicates that the property is used internally but is neither an input nor an output.
    
    | `@link:{javadocPath}/org/gradle/api/model/ReplacedBy.html[ReplacedBy]`
    | Any type
    | Indicates that the property has been replaced by another and should be ignored as an input or output.
    
    | [[skip-when-empty]]`@link:{javadocPath}/org/gradle/api/tasks/SkipWhenEmpty.html[SkipWhenEmpty]`
    | `File` or `Iterable&lt;File&gt;`+++*+++
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// values is an array of string values. If the operator is In or NotIn,
    	// the values array must be non-empty. If the operator is Exists or DoesNotExist,
    	// the values array must be empty. This array is replaced during a strategic
    	// merge patch.
    	// +optional
    	// +listType=atomic
    	Values []string `json:"values,omitempty" protobuf:"bytes,3,rep,name=values"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  7. src/runtime/mheap.go

    	// arrays to avoid bounds checks along critical performance
    	// paths.
    	// The sweep will free the old allocBits and set allocBits to the
    	// gcmarkBits. The gcmarkBits are replaced with a fresh zeroed
    	// out memory.
    	allocBits  *gcBits
    	gcmarkBits *gcBits
    	pinnerBits *gcBits // bitmap for pinned objects; accessed atomically
    
    	// sweep generation:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/pv_controller.go

    		return provisionerName, err
    	}
    	claim = newClaim
    	msg := fmt.Sprintf("Waiting for a volume to be created either by the external provisioner '%s' "+
    		"or manually by the system administrator. If volume creation is delayed, please verify that "+
    		"the provisioner is running and correctly registered.", provisionerName)
    	// External provisioner has been requested for provisioning the volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  9. src/cmd/cgo/gcc.go

    				if id.Name == r.Name.Mangle && r.Name.Const != "" {
    					expr = ast.NewIdent(r.Name.Const)
    				}
    			}
    		}
    
    		// Copy position information from old expr into new expr,
    		// in case expression being replaced is first on line.
    		// See golang.org/issue/6563.
    		pos := (*r.Expr).Pos()
    		if x, ok := expr.(*ast.Ident); ok {
    			expr = &ast.Ident{NamePos: pos, Name: x.Name}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top