Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 176 for Ds (0.03 sec)

  1. src/net/tcpconn_keepalive_illumos_test.go

    	tcpKeepAliveIdle, err := syscall.GetsockoptInt(fd, syscall.IPPROTO_TCP, syscall_TCP_KEEPIDLE)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if time.Duration(tcpKeepAliveIdle)*time.Second != cfg.Idle {
    		t.Fatalf("TCP_KEEPIDLE: got %ds; want %v", tcpKeepAliveIdle, cfg.Idle)
    	}
    	tcpKeepAliveThreshold, err := syscall.GetsockoptInt(fd, syscall.IPPROTO_TCP, syscall.TCP_KEEPALIVE_THRESHOLD)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:21 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallback.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.ds.callback;
    
    import java.util.Map;
    
    import org.codelibs.fess.entity.DataStoreParams;
    
    public interface IndexUpdateCallback {
    
        void store(DataStoreParams paramMap, Map<String, Object> dataMap);
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 924 bytes
    - Viewed (0)
  3. pkg/apis/apps/validation/validation_test.go

    			ds: &apps.RollingUpdateDaemonSet{
    				MaxUnavailable: intstr.FromInt32(0),
    			},
    			expectError: true,
    		},
    		"valid: one": {
    			ds: &apps.RollingUpdateDaemonSet{
    				MaxUnavailable: intstr.FromInt32(1),
    			},
    		},
    		"valid: one percent": {
    			ds: &apps.RollingUpdateDaemonSet{
    				MaxUnavailable: intstr.FromString("1%"),
    			},
    		},
    		"valid: 100%": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  4. pilot/pkg/networking/grpcgen/grpcgen_test.go

    	log.Configure(o)
    }
    
    func TestGRPC(t *testing.T) {
    	// Init Istiod in-process server.
    	ds := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{
    		ListenerBuilder: func() (net.Listener, error) {
    			return net.Listen("tcp", "127.0.0.1:0")
    		},
    	})
    	sd := ds.MemRegistry
    
    	lis, err := net.Listen("tcp", ":0")
    	if err != nil {
    		t.Fatalf("net.Listen failed: %v", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. cluster/addons/fluentd-gcp/scaler-deployment.yaml

        spec:
          serviceAccountName: fluentd-gcp-scaler
          containers:
          - name: fluentd-gcp-scaler
            image: registry.k8s.io/fluentd-gcp-scaler:0.5.2
            command:
              - /scaler.sh
              - --ds-name=fluentd-gcp-{{ fluentd_gcp_yaml_version }}
              - --scaling-policy=fluentd-gcp-scaling-policy
            env:
            # Defaults, used if no overrides are found in fluentd-gcp-scaling-policy
            - name: CPU_REQUEST
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 07 17:58:57 UTC 2023
    - 972 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/DefaultDependencyLockingProviderTest.groovy

            dependencySubstitutionRules.ruleAction >> substitutionAction
            substitutionAction.execute(_ as DependencySubstitution) >> { DependencySubstitution ds ->
                if (ds.requested.displayName.contains('foo')) {
                    ds.useTarget(null)
                }
            }
            provider = newProvider()
            writeLockFile(['org:bar:1.1', 'org:foo:1.1'], unique)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. src/go/doc/example.go

    				if d.Tok == token.CONST && containsIota {
    					ds = append(ds, d)
    				} else {
    					// Synthesize a GenDecl with just the Specs we need.
    					nd := *d // copy the GenDecl
    					nd.Specs = specs
    					if len(specs) == 1 {
    						// Remove grouping parens if there is only one spec.
    						nd.Lparen = 0
    					}
    					ds = append(ds, &nd)
    				}
    			}
    		}
    	}
    	return ds, unresolved
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

    import org.codelibs.core.lang.ThreadUtil;
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.app.service.FailureUrlService;
    import org.codelibs.fess.ds.DataStore;
    import org.codelibs.fess.ds.DataStoreFactory;
    import org.codelibs.fess.ds.callback.IndexUpdateCallback;
    import org.codelibs.fess.entity.DataStoreParams;
    import org.codelibs.fess.es.client.SearchEngineClient;
    import org.codelibs.fess.es.config.exentity.DataConfig;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. src/net/tcpconn_keepalive_solaris_test.go

    			t.Fatalf("TCP_KEEPIDLE: got %ds; want %v", tcpKeepAliveIdle, cfg.Idle)
    		}
    
    		tcpKeepAliveInterval, err := syscall.GetsockoptInt(fd, syscall.IPPROTO_TCP, syscall_TCP_KEEPINTVL)
    		if err != nil {
    			t.Fatal(err)
    		}
    		if time.Duration(tcpKeepAliveInterval)*time.Second != cfg.Interval {
    			t.Fatalf("TCP_KEEPINTVL: got %ds; want %v", tcpKeepAliveInterval, cfg.Interval)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. src/go/scanner/scanner.go

    		for isDecimal(s.ch) || s.ch == '_' {
    			ds := 1
    			if s.ch == '_' {
    				ds = 2
    			} else if s.ch >= max && *invalid < 0 {
    				*invalid = s.offset // record invalid rune offset
    			}
    			digsep |= ds
    			s.next()
    		}
    	} else {
    		for isHex(s.ch) || s.ch == '_' {
    			ds := 1
    			if s.ch == '_' {
    				ds = 2
    			}
    			digsep |= ds
    			s.next()
    		}
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
Back to top