Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 76 for reserved1 (0.41 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	UnwindData   uint32
    }
    
    type LDR_DATA_TABLE_ENTRY struct {
    	reserved1          [2]uintptr
    	InMemoryOrderLinks LIST_ENTRY
    	reserved2          [2]uintptr
    	DllBase            uintptr
    	reserved3          [2]uintptr
    	FullDllName        NTUnicodeString
    	reserved4          [8]byte
    	reserved5          [3]uintptr
    	reserved6          uintptr
    	TimeDateStamp      uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/memorymanager/policy_static_test.go

    	testCases := []testStaticPolicy{
    		{
    			description:   "should fail, when machine does not have reserved memory for the system workloads",
    			expectedError: fmt.Errorf("[memorymanager] you should specify the system reserved memory"),
    		},
    		{
    			description: "should succeed, when at least one NUMA node has reserved memory",
    			systemReserved: systemReservedMemory{
    				0: map[v1.ResourceName]uint64{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

        iptables -w -t nat -A IP-MASQ -d 100.64.0.0/10 -m comment --comment "ip-masq: RFC 6598 reserved range is not subject to MASQUERADE" -j RETURN
        iptables -w -t nat -A IP-MASQ -d 198.18.0.0/15 -m comment --comment "ip-masq: RFC 6815 reserved range is not subject to MASQUERADE" -j RETURN
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  4. tensorflow/c/c_api.cc

    /* Copyright 2015 The TensorFlow Authors. All Rights Reserved.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. pkg/controller/daemon/daemon_controller_test.go

    	}
    	manager.dsStore.Add(ds)
    	addNodes(manager.nodeStore, 0, 5, nil)
    
    	// will be preserved because it's the current hash
    	pod := newPod("node-1-", "node-1", simpleDaemonSetLabel, ds)
    	pod.CreationTimestamp.Time = time.Unix(100, 0)
    	manager.podStore.Add(pod)
    
    	// will be preserved because it's the oldest AND it is ready
    	pod = newPod("node-1-old-", "node-1", simpleDaemonSetLabel, ds)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    /* Copyright 2019 The TensorFlow Authors. All Rights Reserved.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                    def reserved = file("${appType}/build/${forbiddenPath}")
                    failure.assertHasDescription("A problem was found with the configuration of task ':${appType}:badTask' (type 'DefaultTask').")
                    failure.assertThatDescription(containsString(cannotWriteToReservedLocation {
                        property('output')
                            .forbiddenAt(reserved)
                            .includeLink()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    Plexus Archiver Created-By: Apache Maven Built-By: jvanzyl Build-Jdk: 1.5.0_07 licenses/extreme.indiana.edu.license.TXT Indiana University Extreme! Lab Software License Version 1.1.1 Copyright (c) 2002 Extreme! Lab, Indiana University. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 200.2K bytes
    - Viewed (0)
  10. src/reflect/value.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package reflect
    
    import (
    	"errors"
    	"internal/abi"
    	"internal/goarch"
    	"internal/itoa"
    	"internal/unsafeheader"
    	"math"
    	"runtime"
    	"unsafe"
    )
    
    // Value is the reflection interface to a Go value.
    //
    // Not all methods apply to all kinds of values. Restrictions,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top