Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 69 for sfcall (0.13 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/asm_zos_s390x.s

    	//  arg 1 ---> R1
    	CMP  R8, $0
    	BEQ  docall
    	SUB  $1, R8
    	MOVD 0(R7), R1
    
    	//  arg 2 ---> R2
    	CMP  R8, $0
    	BEQ  docall
    	SUB  $1, R8
    	ADD  $8, R7
    	MOVD 0(R7), R2
    
    	//  arg 3 --> R3
    	CMP  R8, $0
    	BEQ  docall
    	SUB  $1, R8
    	ADD  $8, R7
    	MOVD 0(R7), R3
    
    	CMP  R8, $0
    	BEQ  docall
    	MOVD $2176+16, R6 // starting LE stack address-8 to store 4th argument
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/testUtils.kt

            }
        }
    }
    
    internal fun KaSession.sortedCalls(collection: Collection<KaCall>): Collection<KaCall> = collection.sortedWith { call1, call2 ->
        compareCalls(call1, call2)
    }
    
    internal fun KaCall.symbols(): List<KaSymbol> = when (this) {
        is KaCompoundVariableAccessCall -> listOfNotNull(symbol, compoundAccess.operationPartiallyAppliedSymbol.symbol)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/user/bsbhv/BsUserBhv.java

                RequestOptionCall<IndexRequestBuilder> entityCall) {
            return doBatchInsert(new BulkList<>(list, call, entityCall), null);
        }
    
        public int[] batchUpdate(List<User> list) {
            return batchUpdate(list, null, null);
        }
    
        public int[] batchUpdate(List<User> list, RequestOptionCall<BulkRequestBuilder> call) {
            return batchUpdate(list, call, null);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

    import org.codelibs.fess.es.config.exentity.FileConfig;
    import org.codelibs.fess.es.config.exentity.WebConfig;
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.bhv.readable.CBCall;
    import org.dbflute.cbean.result.ListResultBean;
    import org.dbflute.optional.OptionalEntity;
    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.search.sort.FieldSortBuilder;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptionClosureInstrumentingClassVisitor.java

             * Renames the Closure's original `doCall` method and adds a wrapper method that invokes the original one.
             */
            RENAME_ORIGINAL_DO_CALL("doCall", null, false, (clazz, methodData) -> {
                // A Closure implementation may have an abstract doCall method. It makes no sense to rewrite that.
                boolean isValidDoCallMethod = !methodData.isAbstract() && methodData.name.equals("doCall");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 01:16:36 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. src/cmd/link/internal/x86/asm.go

    	//      53                      push %ebx
    	//      e8 00 00 00 00          call __x86.get_pc_thunk.cx + R_CALL __x86.get_pc_thunk.cx
    	//      8d 81 00 00 00 00       lea 0x0(%ecx), %eax + R_PCREL ctxt.Moduledata
    	//      8d 99 00 00 00 00       lea 0x0(%ecx), %ebx + R_GOTPC _GLOBAL_OFFSET_TABLE_
    	//      e8 00 00 00 00          call runtime.addmoduledata@plt + R_CALL runtime.addmoduledata
    	//      5b                      pop %ebx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta2/scale.go

    	Status                           *v1beta2.ScaleStatus `json:"status,omitempty"`
    }
    
    // ScaleApplyConfiguration constructs an declarative configuration of the Scale type for use with
    // apply.
    func Scale() *ScaleApplyConfiguration {
    	b := &ScaleApplyConfiguration{}
    	b.WithKind("Scale")
    	b.WithAPIVersion("apps/v1beta2")
    	return b
    }
    
    // WithKind sets the Kind field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v1/scale.go

    }
    
    // ScaleApplyConfiguration constructs an declarative configuration of the Scale type for use with
    // apply.
    func Scale() *ScaleApplyConfiguration {
    	b := &ScaleApplyConfiguration{}
    	b.WithKind("Scale")
    	b.WithAPIVersion("autoscaling/v1")
    	return b
    }
    
    // WithKind sets the Kind field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/GroovyInteroperabilityTest.kt

        @Test
        fun `can use closure with single argument call`() {
            val list = arrayListOf<Int>()
            closureOf<MutableList<Int>> { add(42) }.call(list)
            assertEquals(42, list.first())
        }
    
        @Test
        fun `can use closure with single nullable argument call`() {
            var passedIntoClosure: Any? = "Something non null"
            closureOf<Any?> { passedIntoClosure = this }.call(null)
            assertNull(passedIntoClosure)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/convert.go

    			addr = ir.NewConvExpr(pos, ir.OCONVNOP, argType.PtrTo(), addr)
    			arg = ir.NewStarExpr(pos, addr)
    			arg.SetType(argType)
    		}
    		args = []ir.Node{arg}
    	}
    	call := ir.NewCallExpr(base.Pos, ir.OCALL, fn, nil)
    	call.Args = args
    	return safeExpr(walkExpr(typecheck.Expr(call), init), init)
    }
    
    // walkBytesRunesToString walks an OBYTES2STR or ORUNES2STR node.
    func walkBytesRunesToString(n *ir.ConvExpr, init *ir.Nodes) ir.Node {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 17:28:22 UTC 2023
    - 18.2K bytes
    - Viewed (0)
Back to top