Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 65 for DP (0.03 sec)

  1. pilot/pkg/model/jwks_resolver.go

          "dp": "YkH_MFMlgnGZntOCXLhib1LLW1JJCYmTzebn-JSluFJbG_qQgzuZkUu5s2cYBHmiZkDGmnTDOAYXrOaQSgVIBQMPxMqdUf8WjRIlEb88zvKpM_Curp59wuy6MhI7Ej3xKiixHX3bIq5Qujk3ZdsDbHUi3HH56-V7cdFKccqlg6E",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework_test.go

    	return pl
    }
    
    type TestDuplicatePlugin struct {
    }
    
    func (dp *TestDuplicatePlugin) Name() string {
    	return duplicatePluginName
    }
    
    func (dp *TestDuplicatePlugin) PreFilter(ctx context.Context, state *framework.CycleState, p *v1.Pod) (*framework.PreFilterResult, *framework.Status) {
    	return nil, nil
    }
    
    func (dp *TestDuplicatePlugin) PreFilterExtensions() framework.PreFilterExtensions {
    	return nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    		addr = true
    	case "amd64.LEAQ":
    		dst = 8
    		addr = true
    	default:
    		switch fn.arch.name {
    		case "386", "amd64":
    			if strings.HasPrefix(op, "F") && (strings.HasSuffix(op, "D") || strings.HasSuffix(op, "DP")) {
    				// FMOVDP, FXCHD, etc
    				src = 8
    				break
    			}
    			if strings.HasPrefix(op, "P") && strings.HasSuffix(op, "RD") {
    				// PINSRD, PEXTRD, etc
    				src = 4
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. cmd/xl-storage.go

    	if basePath == "" || deletePath == "" {
    		return nil
    	}
    
    	bp := pathutil.Clean(basePath) // do not override basepath / or deletePath /
    	dp := pathutil.Clean(deletePath)
    	if !strings.HasPrefix(dp, bp) || dp == bp {
    		return nil
    	}
    
    	var err error
    	if recursive {
    		err = s.moveToTrash(deletePath, true, immediate)
    	} else {
    		err = Remove(deletePath)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-32/plexus-component-api-1.0-alpha-32.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: jvanzyl Build-Jdk: 1.6.0-dp org/codehaus/plexus/component/composition/CompositionException.class package org.codehaus.plexus.component.composition; public synchronized class CompositionException extends Exception { private static final long serialVersionUID = -5587124702588800322; public void CompositionException(String); public void CompositionException(String, Throwable); } org/co...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 35.3K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-32/plexus-component-api-1.0-alpha-32.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 Archiver-Version: Plexus Archiver Created-By: Apache Maven Built-By: jvanzyl Build-Jdk: 1.6.0-dp org/codehaus/plexus/component/composition/CompositionException.class package org.codehaus.plexus.component.composition; public synchronized class CompositionException extends Exception { private static final long serialVersionUID = -5587124702588800322; public void CompositionException(String); public void CompositionException(String, Throwable); } org/co...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 35.3K bytes
    - Viewed (0)
  7. src/crypto/x509/x509.go

    		var crlDp []distributionPoint
    		for _, name := range template.CRLDistributionPoints {
    			dp := distributionPoint{
    				DistributionPoint: distributionPointName{
    					FullName: []asn1.RawValue{
    						{Tag: 6, Class: 2, Bytes: []byte(name)},
    					},
    				},
    			}
    			crlDp = append(crlDp, dp)
    		}
    
    		ret[n].Value, err = asn1.Marshal(crlDp)
    		if err != nil {
    			return
    		}
    		n++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    func IoctlLifreq(fd int, req int, l *Lifreq) error {
    	return ioctlPtr(fd, req, unsafe.Pointer(l))
    }
    
    // Strioctl Helpers
    
    func (s *Strioctl) SetInt(i int) {
    	s.Len = int32(unsafe.Sizeof(i))
    	s.Dp = (*int8)(unsafe.Pointer(&i))
    }
    
    func IoctlSetStrioctlRetInt(fd int, req int, s *Strioctl) (int, error) {
    	return ioctlPtrRet(fd, req, unsafe.Pointer(s))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
  9. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.openxmlformats-officedocument.wordprocessingml.template",
    				"application/vnd.osa.netdeploy",
    				"application/vnd.osgi.bundle",
    				"application/vnd.osgi.dp",
    				"application/vnd.otps.ct-kip+xml",
    				"application/vnd.palm",
    				"application/vnd.paos.xml",
    				"application/vnd.pg.format",
    				"application/vnd.pg.osasli",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  10. src/compress/flate/testdata/huffman-rand-max.in

    _�]瘱���B'��_�ۘ�G�r�r�݋�r���%�����z��/I��[����j����Q�,^�dߣGJ�̰�q_z�Ū8���KB��k`6�'�7s8b����+6�e�Ɉ����m�o�����DhE��+d�>��R�.���t�dw�Ujr��
    �U7=�^P`�Dg%�T�2$�
    ��>��{�n�4Q�%�-.�D���,ّa5��Z��Ls���DP��Q%X����s[.3Z�ܺ��V�ۡ��DpǕp��c�zЦ��ϐ�(���n�W�OUU%�'$��]/r��a��:m�L��׀��'���v9����8��}��:���S#M���#K�O���K��x/nc4�
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 17:40:52 UTC 2016
    - 64K bytes
    - Viewed (0)
Back to top