Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 350 for RES (0.06 sec)

  1. pilot/pkg/networking/core/extension_config_builder.go

    		if !ok {
    			log.Warnf("ignoring unknown ECDS: %v", n)
    			continue
    		}
    		res = append(res, types.NamespacedName{Namespace: ns, Name: name})
    	}
    	return res
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. internal/config/identity/ldap/config.go

    	}
    
    	// For now, ldapConfigs will only have a single entry for the default
    	// configuration.
    
    	var res []madmin.IDPListItem
    	for _, cfg := range ldapConfigs {
    		res = append(res, madmin.IDPListItem{
    			Type:    "ldap",
    			Name:    cfg,
    			Enabled: l.Enabled(),
    		})
    	}
    
    	return res, nil
    }
    
    // ErrProviderConfigNotFound - represents a non-existing provider error.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. src/runtime/type.go

    		if base >= md.types && base < md.etypes {
    			res := md.types + uintptr(off)
    			if res > md.etypes {
    				println("runtime: nameOff", hex(off), "out of range", hex(md.types), "-", hex(md.etypes))
    				throw("runtime: name offset out of range")
    			}
    			return name{Bytes: (*byte)(unsafe.Pointer(res))}
    		}
    	}
    
    	// No module found. see if it is a run time name.
    	reflectOffsLock()
    	res, found := reflectOffs.m[int32(off)]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex.go

    	}
    
    	// 3. Service
    	if svc := a.lookupService(key); svc != nil {
    		res := []model.AddressInfo{serviceToAddressInfo(svc.Service)}
    		for _, w := range a.workloads.ByServiceKey.Lookup(svc.ResourceName()) {
    			res = append(res, workloadToAddressInfo(w.Workload))
    		}
    		return res
    	}
    	return nil
    }
    
    func (a *index) lookupService(key string) *model.ServiceInfo {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:41 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. src/encoding/base32/base32_test.go

    			if n > 0 {
    				res = append(res, dbuf[:n]...)
    			}
    		}
    
    		testEqual(t, "Decoding of %q = %q, want %q", string(input), string(res), tc.res)
    		testEqual(t, "Decoding of %q err = %v, expected %v", string(input), err, tc.err)
    	}
    }
    
    // TestDecoderError verifies decode errors are propagated when there are no read
    // errors.
    func TestDecoderError(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. src/crypto/internal/nistec/p256_asm.go

    // If cond is not 0, sets val = -val mod p.
    //
    //go:noescape
    func p256NegCond(val *p256Element, cond int)
    
    // If cond is 0, sets res = b, otherwise sets res = a.
    //
    //go:noescape
    func p256MovCond(res, a, b *P256Point, cond int)
    
    //go:noescape
    func p256BigToLittle(res *p256Element, in *[32]byte)
    
    //go:noescape
    func p256LittleToBig(res *[32]byte, in *p256Element)
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  7. cni/pkg/ipset/nldeps_linux.go

    //
    // This happens with kernels as recent as Fedora38, e.g: 6.4.11-200.fc38.aarch64
    func (m *realDeps) clearEntriesWithComment(name, comment string) error {
    	res, err := netlink.IpsetList(name)
    	if err != nil {
    		return fmt.Errorf("failed to list ipset %s: %w", name, err)
    	}
    	for _, entry := range res.Entries {
    		if entry.Comment == comment {
    			err := netlink.IpsetDel(name, &entry)
    			if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 18:07:05 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/tests/ifrt/sink_variable_as_named_array.mlir

    // CHECK-SAME:       used_by_host = false 
    // CHECK-NEXT:   [[RES:%.*]] = "tf.IfrtCall"([[KEY]], %arg0) <{program_id = 6515870160938153680 : i64, variable_arg_indices = [0 : i32]}>
    // CHECK-SAME:    : (tensor<!tf_type.string>, tensor<1x3xf32>) -> tensor<1x1xf32>
    // CHECK-NEXT:    return [[RES]] : tensor<1x1xf32>
    //
    module {
      func.func @serving_default(%arg0: tensor<1x3xf32>) -> tensor<1x1xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 15:33:17 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. src/net/http/transport_test.go

    	req.Header.Set("Connection", "upgrade")
    	res, err := cst.c.Do(req)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if res.StatusCode != 101 {
    		t.Fatalf("expected 101 switching protocols; got %v, %v", res.Status, res.Header)
    	}
    	rwc, ok := res.Body.(io.ReadWriteCloser)
    	if !ok {
    		t.Fatalf("expected a ReadWriteCloser; got a %T", res.Body)
    	}
    	defer rwc.Close()
    	bs := bufio.NewScanner(rwc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultVersionRangeResolver.java

                Map<String, ArtifactRepository> repos = res.getVersions().stream()
                        .filter(v -> res.getRepository(v) != null)
                        .collect(Collectors.toMap(v -> v.toString(), res::getRepository));
    
                return new VersionRangeResolverResult() {
                    @Override
                    public List<Exception> getExceptions() {
                        return res.getExceptions();
                    }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top