Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 62 for thr_new (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go

    	SYS_AUDITCTL                 = 453 // { int auditctl(char *path); }
    	SYS__UMTX_OP                 = 454 // { int _umtx_op(void *obj, int op, u_long val, void *uaddr1, void *uaddr2); }
    	SYS_THR_NEW                  = 455 // { int thr_new(struct thr_param *param, int param_size); }
    	SYS_SIGQUEUE                 = 456 // { int sigqueue(pid_t pid, int signum, void *value); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  2. src/syscall/zsysnum_freebsd_riscv64.go

    	SYS_AUDITCTL                 = 453 // { int auditctl(char *path); }
    	SYS__UMTX_OP                 = 454 // { int _umtx_op(void *obj, int op, u_long val, void *uaddr1, void *uaddr2); }
    	SYS_THR_NEW                  = 455 // { int thr_new(struct thr_param *param, int param_size); }
    	SYS_SIGQUEUE                 = 456 // { int sigqueue(pid_t pid, int signum, void *value); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:39:46 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  3. src/syscall/zsysnum_freebsd_arm64.go

    	SYS_AUDITCTL                 = 453 // { int auditctl(char *path); }
    	SYS__UMTX_OP                 = 454 // { int _umtx_op(void *obj, int op, u_long val, void *uaddr1, void *uaddr2); }
    	SYS_THR_NEW                  = 455 // { int thr_new(struct thr_param *param, int param_size); }
    	SYS_SIGQUEUE                 = 456 // { int sigqueue(pid_t pid, int signum, void *value); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/io/Closeables.java

       *   SomeStream stream = new SomeStream("foo");
       *   boolean threw = true;
       *   try {
       *     // ... code which does something with the stream ...
       *     threw = false;
       *   } finally {
       *     // If an exception occurs, rethrow it only if threw==false:
       *     Closeables.close(stream, threw);
       *   }
       * }
       * }</pre>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/io/Closeables.java

       *   SomeStream stream = new SomeStream("foo");
       *   boolean threw = true;
       *   try {
       *     // ... code which does something with the stream ...
       *     threw = false;
       *   } finally {
       *     // If an exception occurs, rethrow it only if threw==false:
       *     Closeables.close(stream, threw);
       *   }
       * }
       * }</pre>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/execution/VerificationFailureHandlingIntegrationTest.groovy

                    @OutputFile
                    abstract RegularFileProperty getProducerOutput()
    
                    @TaskAction
                    void doAction() {
                        throw new VerificationException("ProducerTask threw VerificationException")
                    }
                }
    
                def producerTask = tasks.register('producerTask', ProducerTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 18 04:22:00 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

        // CHECK: [[ACCUM_NEW_LR:%.*]] = "tf.Mul"([[ACCUM_NEW]], [[LR]])
        // CHECK: [[VAR:%.*]] = "tf.ReadVariableOp"([[VAR_HANDLE]])
        // CHECK: [[VAR_NEW:%.*]] = "tf.Sub"([[VAR]], [[ACCUM_NEW_LR]])
        // CHECK: "tf.AssignVariableOp"([[VAR_HANDLE]], [[VAR_NEW]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/UnrepresentableParameterException.java

        public UnrepresentableParameterException(ITestResult iTestResult, int paramIndex, Throwable cause) {
            super(
                    String.format("Parameter %s of iteration %s of method '%s' toString() method threw exception",
                            paramIndex + 1, iTestResult.getMethod().getCurrentInvocationCount() + 1, iTestResult.getName()
                    ),
                    cause
            );
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/ChildUrlsException.java

        private static final long serialVersionUID = 1L;
    
        private final Set<RequestData> childUrlList;
    
        public ChildUrlsException(final Set<RequestData> childUrlList, final String description) {
            super("Threw child urls(" + childUrlList.size() + "). " + description, false, false);
            this.childUrlList = childUrlList;
        }
    
        public Set<RequestData> getChildUrlList() {
            return childUrlList;
        }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/classpath/GroovyDynamicDispatchingInterceptingTest.groovy

                ]
            }(constructor, new InterceptorTestReceiver())
    
            then:
            modifiedMetaClasses.every()
        }
    
        def 'closure does not erroneously become effectively instrumented after it threw an exception'() {
            given:
            def transformedThrowingClosure = instrumentedClasses.instrumentedClosure {
                throw new RuntimeException()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 09:44:54 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top