Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 152 for forall (0.12 sec)

  1. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/groovy/scripts/internal/AstUtils.java

                throw new IllegalArgumentException("expecting generated closure class node");
            }
    
            List<MethodNode> doCallMethods = classNode.getDeclaredMethods("doCall");
            return doCallMethods.get(0);
        }
    
        /**
         * Returns true if the given statement may have some effect as part of a script body.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  2. android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

          return items.length - count;
        } finally {
          monitor.leave();
        }
      }
    
      /**
       * Removes a single instance of the specified element from this queue, if it is present. More
       * formally, removes an element {@code e} such that {@code o.equals(e)}, if this queue contains
       * one or more such elements. Returns {@code true} if this queue contained the specified element
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  3. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

          return items.length - count;
        } finally {
          monitor.leave();
        }
      }
    
      /**
       * Removes a single instance of the specified element from this queue, if it is present. More
       * formally, removes an element {@code e} such that {@code o.equals(e)}, if this queue contains
       * one or more such elements. Returns {@code true} if this queue contained the specified element
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r48/PhasedBuildActionCrossVersionSpec.groovy

                    .forTasks("bye")
                    .setStandardOutput(stdOut)
                    .run()
            }
    
            then:
            Pattern regex = Pattern.compile(".*hello.*bye.*buildFinishedAction.*", Pattern.DOTALL)
            assert stdOut.toString().matches(regex)
            buildFinishedHandler.getResult() == "build"
            stdOut.toString().contains("hello")
            stdOut.toString().contains("bye")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. pilot/pkg/leaderelection/leaderelection.go

    	// doing the ingress syncing.
    	IngressController = "istio-leader"
    	// GatewayStatusController controls the status of gateway.networking.k8s.io objects. For the v1alpha1
    	// this was formally "istio-gateway-leader"; because they are a different API group we need a different
    	// election to ensure we do not only handle one or the other.
    	GatewayStatusController = "istio-gateway-status-leader"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/typecheck/func.go

    	}
    
    	if name := n.Nname; name.Typecheck() == 0 {
    		base.AssertfAt(name.Type() != nil, n.Pos(), "missing type: %v", name)
    		name.SetTypecheck(1)
    	}
    }
    
    // tcCall typechecks an OCALL node.
    func tcCall(n *ir.CallExpr, top int) ir.Node {
    	Stmts(n.Init()) // imported rewritten f(g()) calls (#30907)
    	n.Fun = typecheck(n.Fun, ctxExpr|ctxType|ctxCallee)
    
    	l := n.Fun
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ir/fmt.go

    	OADDSTR:           "+",
    	OANDAND:           "&&",
    	OANDNOT:           "&^",
    	OAND:              "&",
    	OAPPEND:           "append",
    	OAS:               "=",
    	OAS2:              "=",
    	OBREAK:            "break",
    	OCALL:             "function call", // not actual syntax
    	OCAP:              "cap",
    	OCASE:             "case",
    	OCLEAR:            "clear",
    	OCLOSE:            "close",
    	OCOMPLEX:          "complex",
    	OBITNOT:           "^",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  8. src/internal/pkgbits/encoder.go

    func (w *Encoder) Uint(x uint) { w.Uint64(uint64(x)) }
    
    // Reloc encodes and writes a relocation for the given (section,
    // index) pair into the element bitstream.
    //
    // Note: Only the index is formally written into the element
    // bitstream, so bitstream decoders must know from context which
    // section an encoded relocation refers to.
    func (w *Encoder) Reloc(r RelocKind, idx Index) {
    	w.Sync(SyncUseReloc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 10 23:26:58 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  9. docs/pt/docs/async.md

    Por isso que faz muito mais sentido utilizar código assíncrono para APIs web.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  10. src/crypto/internal/edwards25519/scalar.go

    	s fiatScalarMontgomeryDomainFieldElement
    }
    
    // The field implementation in scalar_fiat.go is generated by the fiat-crypto
    // project (https://github.com/mit-plv/fiat-crypto) at version v0.0.9 (23d2dbc)
    // from a formally verified model.
    //
    // fiat-crypto code comes under the following license.
    //
    //     Copyright (c) 2015-2020 The fiat-crypto Authors. All rights reserved.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top