Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 176 for Ds (0.06 sec)

  1. pkg/volume/flexvolume/driver-call_test.go

    */
    
    package flexvolume
    
    import (
    	"testing"
    )
    
    func TestHandleResponseDefaults(t *testing.T) {
    	ds, err := handleCmdResponse("test", []byte(`{"status": "Success"}`))
    	if err != nil {
    		t.Error("error: ", err)
    	}
    
    	if *ds.Capabilities != *defaultCapabilities() {
    		t.Error("wrong default capabilities: ", *ds.Capabilities)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 11:18:58 UTC 2017
    - 894 bytes
    - Viewed (0)
  2. src/net/rpc/debug.go

    		svc := svci.(*service)
    		ds := debugService{svc, snamei.(string), make([]debugMethod, 0, len(svc.method))}
    		for mname, method := range svc.method {
    			ds.Method = append(ds.Method, debugMethod{method, mname})
    		}
    		slices.SortFunc(ds.Method, func(a, b debugMethod) int {
    			return strings.Compare(a.Name, b.Name)
    		})
    		services = append(services, ds)
    		return true
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. pkg/controller/daemon/util/daemonset_util.go

    func AllowsSurge(ds *apps.DaemonSet) bool {
    	maxSurge, err := SurgeCount(ds, 1)
    	return err == nil && maxSurge > 0
    }
    
    // SurgeCount returns 0 if surge is not requested, the expected surge number to allow
    // out of numberToSchedule if surge is configured, or an error if the surge percentage
    // requested is invalid.
    func SurgeCount(ds *apps.DaemonSet, numberToSchedule int) (int, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 18 11:54:59 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  4. subprojects/core/src/testFixtures/groovy/org/gradle/util/ports/DefaultPortDetector.groovy

                try {
                    ss.setReuseAddress(true)
                } finally {
                    ss.close()
                }
                DatagramSocket ds = new DatagramSocket(port)
                try {
                    ds.setReuseAddress(true)
                } finally {
                    ds.close()
                }
                return true
            } catch (IOException e) {
                return false
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 07 09:47:55 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  5. src/debug/pe/file.go

    			ds = s
    			break
    		}
    	}
    
    	// didn't find a section, so no import libraries were found
    	if ds == nil {
    		return nil, nil
    	}
    
    	d, err := ds.Data()
    	if err != nil {
    		return nil, err
    	}
    
    	// seek to the virtual address specified in the import data directory
    	d = d[idd.VirtualAddress-ds.VirtualAddress:]
    
    	// start decoding the import directory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  6. src/main/resources/fess_ds.xml

    <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN"
    	"http://dbflute.org/meta/lastadi10.dtd">
    <components>
    	<component name="dataStoreFactory" class="org.codelibs.fess.ds.DataStoreFactory">
    	</component>
    	<component name="indexUpdateCallback" class="org.codelibs.fess.ds.callback.IndexUpdateCallbackImpl" instance="prototype">
    	</component>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 31 09:46:09 UTC 2018
    - 404 bytes
    - Viewed (0)
  7. pilot/pkg/xds/endpoints/ep_filters_test.go

    	//  - 1 IP gateway for network1
    	//  - 1 DNS gateway for network2
    	//  - 1 IP gateway for network3
    	//  - 0 gateways for network4
    	ds := environment(t)
    	origServices := ds.Env().Services()
    	origGateways := ds.Env().NetworkGateways()
    	ds.MemRegistry.AddService(&model.Service{
    		Hostname: "istio-ingressgateway.istio-system.svc.cluster.local",
    		Attributes: model.ServiceAttributes{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  8. src/log/slog/attr_test.go

    		is string
    		u  string
    		f  string
    		bn string
    		s  string
    		x  string
    		ds string
    		p  = &is
    		d  time.Duration
    	)
    	b.ReportAllocs()
    	for i := 0; i < b.N; i++ {
    		is = Int64("key", 1).String()
    		u = Uint64("key", 1).String()
    		f = Float64("key", 1).String()
    		bn = Bool("key", true).String()
    		s = String("key", "foo").String()
    		ds = Duration("key", d).String()
    		x = Any("key", p).String()
    	}
    	_ = u
    	_ = f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 18:23:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencySubstitutions.java

                        return ds.getRuleDescriptors();
                    }
    
                    @Override
                    public boolean isUpdated() {
                        return ds.isUpdated();
                    }
    
                    @Override
                    public ArtifactSelectionDetailsInternal getArtifactSelectionDetails() {
                        return ds.getArtifactSelectionDetails();
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/SimpleGeneratedJavaClassCompiler.java

            }
            DiagnosticCollector<JavaFileObject> ds = new DiagnosticCollector<>();
            try (StandardJavaFileManager mgr = compiler.getStandardFileManager(ds, null, null)) {
                List<String> options = buildOptions(dstDir, classPath);
                List<File> filesToCompile = outputSourceFilesToSourceDir(srcDir, classes);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top