Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 879 for RES (0.1 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/rc/WindowsResourcesIncrementalBuildIntegrationTest.groovy

                    // Use a compiler arg that will change the generated .res file
                    rcCompiler.args "-DFRENCH"
                }
            }
        }
    }
    """
            and:
            run "mainExecutable"
    
            then:
            executedAndNotSkipped ":compileMainExecutableMainRc", ":linkMainExecutable", ":mainExecutable"
        }
    
        def "stale .res files are removed when a resource source file is renamed"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. 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)
  3. pkg/apis/core/v1/helper/qos/qos_test.go

    		}
    	}
    }
    
    func getResourceList(cpu, memory string) v1.ResourceList {
    	res := v1.ResourceList{}
    	if cpu != "" {
    		res[v1.ResourceCPU] = resource.MustParse(cpu)
    	}
    	if memory != "" {
    		res[v1.ResourceMemory] = resource.MustParse(memory)
    	}
    	return res
    }
    
    func addResource(rName, value string, rl v1.ResourceList) v1.ResourceList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 14:47:37 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/remove_tf_if_const_args.mlir

      %0 = "tf.Const"() {value = dense<10> : tensor<i32> } : () -> tensor<i32>
      // CHECK: [[res:%.*]] = "tf.If"([[cond]], [[x]])
      // CHECK-SAME: {else_branch = @else_removed_const_args_0, is_stateless = false, then_branch = @then_removed_const_args_0}
      // CHECK-NEXT: return [[res]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 25 10:51:48 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/abiutilsaux_test.go

    	dump string
    	file string
    	line int
    }
    
    func tokenize(src string) []string {
    	var s scanner.Scanner
    	s.Init(strings.NewReader(src))
    	res := []string{}
    	for tok := s.Scan(); tok != scanner.EOF; tok = s.Scan() {
    		res = append(res, s.TokenText())
    	}
    	return res
    }
    
    func verifyParamResultOffset(t *testing.T, f *types.Field, r abi.ABIParamAssignment, which string, idx int) int {
    	n := f.Nname.(*ir.Name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 18:34:00 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/testing/fake.go

    	res := sets.New[string]()
    	// list all addresses from a given network interface.
    	for _, addr := range h.localAddresses[dev] {
    		if h.isValidForSet(addr) {
    			res.Insert(addr)
    		}
    	}
    	return res, nil
    }
    func (h *FakeNetlinkHandle) GetAllLocalAddresses() (sets.Set[string], error) {
    	res := sets.New[string]()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/it/admin/SystemInfoTests.java

            String response = checkGetMethod(searchBody, "").asString();
            final Map<String, Object> res = JsonPath.from(response).getMap("response");
            assertTrue(res.containsKey("env_props"));
            assertTrue(res.containsKey("system_props"));
            assertTrue(res.containsKey("fess_props"));
            assertTrue(res.containsKey("bug_report_props"));
            assertEquals(new Integer(0), JsonPath.from(response).get("response.status"));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. src/internal/coverage/cmerge/merge_test.go

    		cmode         coverage.CounterMode
    		cgran         coverage.CounterGranularity
    		src, dst, res []uint32
    		iters         int
    		merr          bool
    		overflow      bool
    	}{
    		{
    			cmode:    coverage.CtrModeSet,
    			cgran:    coverage.CtrGranularityPerBlock,
    			src:      []uint32{1, 0, 1},
    			dst:      []uint32{1, 1, 0},
    			res:      []uint32{1, 1, 1},
    			iters:    2,
    			overflow: false,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:37 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/webApplication/customized/kotlin/src/main/java/org/gradle/HelloServlet.java

    import java.io.*;
    
    import javax.servlet.http.*;
    import javax.servlet.*;
    
    public class HelloServlet extends HttpServlet {
        public void doGet (HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException {
            PrintWriter out = res.getWriter();
            out.print("Hello Gradle");
            out.close();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 360 bytes
    - Viewed (0)
  10. pkg/util/sets/set.go

    func (s Set[T]) UnsortedList() []T {
    	res := make([]T, 0, s.Len())
    	for key := range s {
    		res = append(res, key)
    	}
    	return res
    }
    
    // SortedList returns the slice with contents sorted.
    func SortedList[T constraints.Ordered](s Set[T]) []T {
    	res := s.UnsortedList()
    	slices.Sort(res)
    	return res
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top