Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 149 for extended (0.69 sec)

  1. CHANGELOG/CHANGELOG-1.31.md

    ### API Change
    
    - Added the feature gates `StrictCostEnforcementForVAP` and `StrictCostEnforcementForWebhooks` to enforce the strct cost calculation for CEL extended libraries. It is strongly recommended to turn on the feature gates as early as possible. ([#124675](https://github.com/kubernetes/kubernetes/pull/124675), [@cici37](https://github.com/cici37)) [SIG API Machinery, Auth, Node and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //
    // Smart pointers:
    //   scoped_ptr     - as in TR2.
    //
    // Regular expressions:
    //   RE             - a simple regular expression class using the POSIX
    //                    Extended Regular Expression syntax on UNIX-like
    //                    platforms, or a reduced regular exception syntax on
    //                    other platforms, including Windows.
    //
    // Logging:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

                            selectedByRule()
                        }
                    }
                }
            }
        }
    
        void "can replace external dependency declared in extended configuration with project dependency"() {
            mavenRepo.module("org.utils", "api", '1.5').publish()
    
            createDirs("api", "impl")
            settingsFile << 'include "api", "impl"'
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    		return
    	}
    	ptr, err := LockResource(resData)
    	if err != nil {
    		return
    	}
    	data = unsafe.Slice((*byte)(unsafe.Pointer(ptr)), size)
    	return
    }
    
    // PSAPI_WORKING_SET_EX_BLOCK contains extended working set information for a page.
    type PSAPI_WORKING_SET_EX_BLOCK uint64
    
    // Valid returns the validity of this page.
    // If this bit is 1, the subsequent members are valid; otherwise they should be ignored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite.go

    		OpARM64MADDW, OpARM64MSUBW, OpARM64RORW, OpARM64RORWconst:
    		return true
    	case OpArg: // note: but not ArgIntReg
    		// amd64 always loads args from the stack unsigned.
    		// most other architectures load them sign/zero extended based on the type.
    		return x.Type.Size() == 4 && (x.Type.IsUnsigned() || x.Block.Func.Config.arch == "amd64")
    	case OpPhi, OpSelect0, OpSelect1:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// code but does not override it.
    	// +optional
    	Reason StatusReason `json:"reason,omitempty" protobuf:"bytes,4,opt,name=reason,casttype=StatusReason"`
    	// Extended data associated with the reason.  Each reason may define its
    	// own extended details. This field is optional and the data returned
    	// is not guaranteed to conform to any schema except that defined by
    	// the reason type.
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // be restored using a MOVBZ (llgc) instruction which will zero extend the
    // 8-bit value to 64-bits.
    //
    // This is a hazard when folding sign- and zero-extensions since we need to
    // ensure not only that the value in the argument register is correctly
    // extended but also that it will still be correctly extended if it is
    // spilled and restored.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  8. src/math/big/int_test.go

    	b := new(Int).SetBytes(bBytes)
    
    	d := new(Int).GCD(x, y, a, b)
    	x.Mul(x, a)
    	y.Mul(y, b)
    	x.Add(x, y)
    
    	return x.Cmp(d) == 0
    }
    
    // euclidExtGCD is a reference implementation of Euclid's
    // extended GCD algorithm for testing against optimized algorithms.
    // Requirements: a, b > 0
    func euclidExtGCD(a, b *Int) (g, x, y *Int) {
    	A := new(Int).Set(a)
    	B := new(Int).Set(b)
    
    	// A = Ua*a + Va*b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  9. src/regexp/testdata/testregex.c

    #ifndef REG_TEST_DEFAULT
    #define REG_TEST_DEFAULT	0
    #endif
    
    #ifndef REG_EXEC_DEFAULT
    #define REG_EXEC_DEFAULT	0
    #endif
    
    static const char* unsupported[] =
    {
    	"BASIC",
    #ifndef REG_EXTENDED
    	"EXTENDED",
    #endif
    #ifndef REG_AUGMENTED
    	"AUGMENTED",
    #endif
    #ifndef REG_SHELL
    	"SHELL",
    #endif
    
    #ifndef REG_CLASS_ESCAPE
    	"CLASS_ESCAPE",
    #endif
    #ifndef REG_COMMENT
    	"COMMENT",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

            }
          }
        },
        "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ExternalDocumentation": {
          "description": "ExternalDocumentation allows referencing an external resource for extended documentation.",
          "type": "object",
          "properties": {
            "description": { "type": "string" },
            "url": { "type": "string" }
          }
        },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
Back to top