Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,123 for gems (0.03 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/io/ModelParseException.java

            this.columnNumber = columnNumber;
        }
    
        /**
         * Gets the one-based index of the line containing the error.
         *
         * @return The one-based index of the line containing the error or a non-positive value if unknown.
         */
        public int getLineNumber() {
            return lineNumber;
        }
    
        /**
         * Gets the one-based index of the column containing the error.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. maven-settings-builder/src/main/java/org/apache/maven/settings/io/SettingsParseException.java

            this.columnNumber = columnNumber;
        }
    
        /**
         * Gets the one-based index of the line containing the error.
         *
         * @return The one-based index of the line containing the error or a non-positive value if unknown.
         */
        public int getLineNumber() {
            return lineNumber;
        }
    
        /**
         * Gets the one-based index of the column containing the error.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/io/ToolchainsParseException.java

            this.columnNumber = columnNumber;
        }
    
        /**
         * Gets the one-based index of the line containing the error.
         *
         * @return The one-based index of the line containing the error or a non-positive value if unknown.
         */
        public int getLineNumber() {
            return lineNumber;
        }
    
        /**
         * Gets the one-based index of the column containing the error.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. src/syscall/asm_linux_s390x.s

    	SYSCALL
    	MOVD	R2, r1+32(FP)
    	MOVD	R3, r2+40(FP)
    	RET
    
    #define SYS_SOCKETCALL 102	/* from zsysnum_linux_s390x.go */
    
    // func socketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (n int, err int)
    // Kernel interface gets call sub-number and pointer to a0.
    TEXT ·socketcall(SB),NOSPLIT,$0-72
    	BL	runtime·entersyscall(SB)
    	MOVD	$SYS_SOCKETCALL, R1	// syscall entry
    	MOVD	call+0(FP), R2		// socket call number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. test/fixedbugs/bug440_64.go

    // run
    
    // Test for 6g register move bug.  The optimizer gets confused
    // about 32- vs 64-bit moves during splitContractIndex.
    
    // Issue 3918.
    
    package main
    
    func main() {
    	const c = 0x123400005678
    	index, offset := splitContractIndex(c)
    	if index != (c&0xffffffff)>>5 || offset != c+1 {
    		println("BUG", index, offset)
    	}
    }
    
    func splitContractIndex(ce uint64) (index uint32, offset uint64) {
    	h := uint32(ce)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 01 14:40:54 UTC 2012
    - 435 bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/gateway/secret.go

    		return false
    	}
    	return true
    }
    
    // Gets the namespace for the gateway (in terms of the actual workload selected by the gateway, NOT the namespace of the Gateway CRD)
    // Assumes that all selected workloads are in the same namespace, if this is not the case which one's namespace gets returned is undefined.
    func getGatewayNamespace(ctx analysis.Context, gw *v1alpha3.Gateway) resource.Namespace {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 18:29:24 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/folders.cc

        };
        if (!llvm::all_of(operation->getOperands(), foldable_opr)) {
          return std::nullopt;
        }
        return FoldAdaptor(operation);
      }
    
      // Gets a list of ElementsAttr behind each constant operand.
      llvm::SmallVector<ElementsAttr> OperandData() {
        llvm::SmallVector<ElementsAttr> res;
        res.reserve(operation_->getNumOperands());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 06:11:55 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/NamespaceId.java

            } catch (IOException e) {
                throw new RuntimeException("Failed encoding namespace ID '" + name + "'");
            }
        }
    
        /**
         * Gets the namespace for this identifier.
         *
         * @return the namespace for this identifier
         */
        public String getNamespace() {
            return namespace;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/multicluster/httproute-referencegrant.yaml

    #$ Used in:
    #$ - geps/gep-1748.md
    kind: HTTPRoute
    apiVersion: gateway.networking.k8s.io/v1beta1
    metadata:
      name: foo
      namespace: foo
    spec:
      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /bar
        backendRefs:
        - group: multicluster.x-k8s.io
          kind: ServiceImport
          name: bar
          namespace: bar
    ---
    kind: ReferenceGrant
    apiVersion: gateway.networking.k8s.io/v1beta1
    metadata:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 598 bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/join/controlplanejoin.go

    	data, ok := c.(JoinData)
    	if !ok {
    		return errors.New("control-plane-join phase invoked with an invalid data struct")
    	}
    
    	if data.Cfg().ControlPlane == nil {
    		return nil
    	}
    
    	// gets access to the cluster using the identity defined in admin.conf
    	client, err := data.Client()
    	if err != nil {
    		return errors.Wrap(err, "couldn't create Kubernetes client")
    	}
    	cfg, err := data.InitCfg()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:09:42 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top