Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 63 for Backward (0.13 sec)

  1. src/os/os_test.go

    			if strings.Contains(string(mounts), "noatime") {
    				t.Logf("AccessTime didn't go backwards, but see a filesystem mounted noatime; ignoring. Issue 19293.")
    			} else {
    				t.Logf("AccessTime didn't go backwards; was=%v, after=%v (Ignoring on NetBSD, assuming noatime, Issue 19293)", at, pat)
    			}
    		default:
    			t.Errorf("AccessTime didn't go backwards; was=%v, after=%v", at, pat)
    		}
    	}
    
    	if !pmt.Before(mt) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		// If runtime reports cpu & memory resources info, add it to container status
    		cStatusResources = toKubeContainerResources(status.Resources)
    	}
    
    	// Keep backwards compatibility to older runtimes, status.ImageId has been added in v1.30
    	imageID := status.ImageRef
    	if status.ImageId != "" {
    		imageID = status.ImageId
    	}
    
    	var cStatusUser *kubecontainer.ContainerUser
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/OutgoingVariantsReportTaskIntegrationTest.groovy

                    assert canBeConsumed
                }
            """
    
            when:
            executer.expectDeprecationWarning('(l) Legacy or deprecated configuration. Those are variants created for backwards compatibility which are both resolvable and consumable.')
            run ':outgoingVariants', '--all'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

            // Property is readable and without a setter of property type and getter is final, so attach owner eagerly in constructor
            // This should apply to all 'managed' types however for backwards compatibility is applied only to property types
            return property.isReadableWithoutSetterOfPropertyType() && !property.getMainGetter().shouldOverride() && hasPropertyType(property);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  5. configure.py

                'TF_CUBLAS_VERSION',
                'TF_CUDNN_VERSION',
                'TF_TENSORRT_VERSION',
                'TF_NCCL_VERSION',
                'TF_CUDA_PATHS',
                # Items below are for backwards compatibility when not using
                # TF_CUDA_PATHS.
                'CUDA_TOOLKIT_PATH',
                'CUDNN_INSTALL_PATH',
                'NCCL_INSTALL_PATH',
                'NCCL_HDR_PATH',
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/ppc64.s

    	// Hex constant 0xFFFFFFFE00000002 (load of constant on < power10, pli on >= power10
    	MOVD $-8589934590, R5           // 3ca00000e8a50000 or 0602000038a00002
    
    	// For backwards compatibility, MOVW $const,Rx and MOVWZ $const,Rx assemble identically
    	// and accept the same constants.
    	MOVW $2147483648, R5            // 64058000
    	MOVWZ $-2147483648, R5          // 3ca08000
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    func (a *APIInstaller) newWebService() *restful.WebService {
    	ws := new(restful.WebService)
    	ws.Path(a.prefix)
    	// a.prefix contains "prefix/group/version"
    	ws.Doc("API at " + a.prefix)
    	// Backwards compatibility, we accepted objects with empty content-type at V1.
    	// If we stop using go-restful, we can default empty content-type to application/json on an
    	// endpoint by endpoint basis
    	ws.Consumes("*/*")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  8. pkg/controller/daemon/daemon_controller.go

    func predicates(pod *v1.Pod, node *v1.Node, taints []v1.Taint) (fitsNodeName, fitsNodeAffinity, fitsTaints bool) {
    	fitsNodeName = len(pod.Spec.NodeName) == 0 || pod.Spec.NodeName == node.Name
    	// Ignore parsing errors for backwards compatibility.
    	fitsNodeAffinity, _ = nodeaffinity.GetRequiredNodeAffinity(pod).Match(node)
    	_, hasUntoleratedTaint := v1helper.FindMatchingUntoleratedTaint(taints, pod.Spec.Tolerations, func(t *v1.Taint) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     * providing a query and fragment.
     *
     * Instances of [HttpUrl] are well-formed and always have a scheme, host, and path. With
     * `java.net.URL` it's possible to create an awkward URL like `http:/` with scheme and path but no
     * hostname. Building APIs that consume such malformed values is difficult!
     *
     * This class has a modern API. It avoids punitive checked exceptions: [toHttpUrl] throws
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  10. src/crypto/tls/common.go

    		autoSessionTicketKeys:               c.autoSessionTicketKeys,
    	}
    }
    
    // deprecatedSessionTicketKey is set as the prefix of SessionTicketKey if it was
    // randomized for backwards compatibility but is not in use.
    var deprecatedSessionTicketKey = []byte("DEPRECATED")
    
    // initLegacySessionTicketKeyRLocked ensures the legacy SessionTicketKey field is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
Back to top